Hello ,
I use docker compose installation of pulp3. In the compose, we have 1 api, 1 web, 1 postgres, 1 redis, 2 worker, 2 content:
COMMAND SERVICE
"docker-entrypoint.s…" postgres
"pulp-api" pulp_api
"pulp-content" pulp_content
"pulp-content" pulp_content
"container-entrypoin…" pulp_web
"pulp-worker" pulp_worker
"pulp-worker" pulp_worker
"docker-entrypoint.s…" redis
Recently, I have to update nginx web certificate. After the certificate change, I just do
docker compose restart pulp_web
, that looks enough.
But I am wondering:
what if I don’t do a full compose restart, I want to restart other individual services? Is there any order or dependence requirements? Or any individual service can be restart independently?
Sorry for the naive questions,
Thanks