暗黑模式
Single Service
bash
docker compose -f /path/to/docker-compose.yml down <server-name> # stop and rm single service
docker compose -f /path/to/docker-compose.yml stop <server-name> # stop single service
docker compose -f /path/to/docker-compose.yml rm <server-name> # remove single service
docker compose -f /path/to/docker-compose.yml up --build -d <server-name> # build and start single service, if source code changed, you must add --build option.
1
2
3
4
5
6
2
3
4
5
6
Use case: after modified one service's
env_file
, you need to remove it's container and rebuild/restart the cntainer
To restart your services in Docker Compose, you can use the restart
command. Here's how to do it:
Restart all services:
bashdocker-compose restart
1This will restart all the services defined in your
docker-compose.yml
file.Restart a specific service: If you want to restart a particular service, specify its name:
bashdocker-compose restart <service_name>
1Replace
<service_name>
with the name of the service as defined in thedocker-compose.yml
.Restart with new changes: If you've updated your configurations or images and want a fresh start, you can stop and remove containers, and then bring them back up:
bashdocker-compose down docker-compose up -d
1
2This process ensures that services restart with the latest changes.
Let me know if you need further clarification!