YouTip LogoYouTip

Docker Compose Start Command

# docker compose start Command [![Image 3: Docker Command Manual](#)Docker Command Manual](#) * * * docker compose start command is used to start Docker Compose service containers that exist but are currently in a stopped state. Unlike docker compose up, it does not create new containers or rebuild images, it only starts containers that have been created but stopped. ### Syntax docker compose start [SERVICE...] * **SERVICE** (optional): Specifies the service name to start. If not specified, all stopped service containers will be started. ### Examples **1、Start all stopped services** docker compose start This will start all containers that are currently in a stopped state. **2、Start a specific service** docker compose start web Only starts the web service container, without affecting other services. * * Docker Command Manual](#)
← Linux Shell FuncLinux Shell Process Control β†’