mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
Do not set a hardcoded default timeout of 10 seconds when restarting / stopping but use the container `StopTimeout` (defaults to 10 seconds). Also fixed custom timeout not used when invoking `up`. Signed-off-by: Robbert Segeren <robbert.segeren@easyflex.nl>
1.1 KiB
1.1 KiB
docker compose restart
Restart service containers
Options
Name | Type | Default | Description |
---|---|---|---|
--dry-run |
Execute command in dry run mode | ||
--no-deps |
Don't restart dependent services. | ||
-t , --timeout |
int |
0 |
Specify a shutdown timeout in seconds |
Description
Restarts all stopped and running services, or the specified services only.
If you make changes to your compose.yml
configuration, these changes are not reflected
after running this command. For example, changes to environment variables (which are added
after a container is built, but before the container's command is executed) are not updated
after restarting.
If you are looking to configure a service's restart policy, please refer to restart or restart_policy.