Is it possible just to start a single container among a group of stopped docker compose container?
I have a docker-compose.yml
file that contains 4 containers: redis
, postgres
, api
and worker
. If all of them has stopped, can I start just one of them to check the config files within it? I’m getting
you cannot start and attach multiple containers at once
and I’m wondering if there is any way to work around it.
1