デーモン - CI/CD用語集の定義
デーモンは、どの端末からも切り離されて動作し続ける長時間実行のバックグラウンドプロセスで、sshd、cron、Dockerエンジン(dockerd)などのサービスを提供します。名前はしばしば「d」で終わります。
CIでは
デーモン(たとえばDocker)に依存するステップは、それが実行されていないと「Cannot connect to the Docker daemon」のようなエラーで失敗します。必要なデーモンを起動するか、それらを必要とするステップの前にservice containerを使ってください。
関連ガイド
Background Process - CI/CD Glossary DefinitionBackground Process: A background process is one started with a trailing `&` so the shell returns immediately…
cron - CI/CD Glossary Definitioncron: cron is the Unix time-based job scheduler that runs commands at fixed times defined by a five-field exp…
Unix Socket - CI/CD Glossary DefinitionUnix Socket: A Unix domain socket is an inter-process communication endpoint addressed by a filesystem path r…