Docker Container Auto Restart

[!NOTE]

Archived answers from chatGPT

To make a Docker container start automatically after a system reboot, you need to set its restart policy when running or updating the container. Here's how you can do it:

  1. Use --restart flag when running a container Run your container with one of the --restart policies:
1
docker run -d --restart unless-stopped my-container-image

Restart Policies:

  • no (default) → Container does not restart.

  • always → Container always restarts after a reboot or crash.

  • unless-stopped → Container restarts unless explicitly stopped.

  • on-failure → Restarts only if the container exits with an error.

👉 Recommended: unless-stopped ensures the container starts again after a reboot but doesn’t restart if you manually stopped it.

  1. Update an existing container’s restart policy If the container is already running, update its restart policy with:
1
docker update --restart unless-stopped my-container-name
  1. Enable Docker service at boot (if needed) Ensure the Docker service itself starts on boot:
1
2
sudo systemctl enable docker
sudo systemctl start docker

To check its status:

1
sudo systemctl status docker
  1. Verify Containers Restart After Reboot Restart your system:
1
sudo reboot

After rebooting, check running containers:

1
docker ps -a

Your container should be running if its restart policy is set correctly.