Synology: How to Change Docker Containers Restart Policy

Synology How to Change Docker Containers Restart Policy

In my Docker guides I always use the “always” restart policy. If for one reason or another you decide to change this policy, I will explain to you how to do it quickly and easily. First of all, you need to know that there are 4 policies for restarting docker containers:

  • always Always restart the container if it stops. If it is manually stopped, it is restarted only when Docker daemon restarts or the container itself is manually restarted. (See the second bullet listed in the restart policy details)
  • unless-stopped Similar to always, except that when the container is stopped (manually or otherwise), it is not restarted even after Docker daemon restarts. For example, if you have “unless-stopped” restart policy when watchtower automatically updates some containers to a newer version, the containers will not start automatically after the update which means you will have to restart them manually.
  • on-failure Restart the container if it exits due to an error.
  • no Do not automatically restart the container. (Default).
  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

Install Portainer using my easy step by step guide. Skip this step if you already have Portainer installed. Attention: Make sure you have installed the latest Portainer version.

  • STEP 3

Open Portainer then click on the container for which you want to change the restart policy. Follow the instructions in the image below.

1 Synology Docker Containers Restart Policy

  • STEP 4

After you click on the container at STEP 3, scroll down on the page until you see a RESTART POLICIES text. On the Dropdown menu change the restart policy according to your needs then click the Update button. Follow the instructions in the image below.

2 Synology Docker Containers Restart Policy

  • STEP 5

If everything goes right, you will see this message at the top right of your screen: “Success Restart policy updated“. Follow the instructions in the image below.

3 Synology Docker Containers Restart Policy

Note: You can replicate the same STEPS above for every container for which you want to change the restart policy.

This post was updated on Tuesday / May 16th, 2023 at 8:26 AM