Running Docker Containers on Synology NAS (2024)

Docker is a containerization platform. Docker is used to running lightweight containers on your computer.

Synology NAS has official support for Docker. Docker can be an alternative to virtual machines. If you don’t have enough memory to run virtual machines on your Synology NAS, you can run Docker containers instead. Docker containers require a very little amount of memory and system resources to run.

In this article, I will show you how to install and use Docker on Synology NAS. So, let’s get started.

Installing Docker on Synology NAS:

Synology NAS products officially support Docker. To use Docker on your Synology NAS, you need to install the Docker app from the Synology Web GUI.

First, open the Package Center app from the Synology Web GUI.

Running Docker Containers on Synology NAS (1)

Search for docker in Package Center. The Docker app should be listed, as you can see in the screenshot below.

Click on the Docker app.

Running Docker Containers on Synology NAS (2)

Click on Install to install the Docker app on your Synology NAS.

Running Docker Containers on Synology NAS (3)

Select the volume you want to install and keep Docker data using the dropdown menu and click on Next as marked in the screenshot below.

Running Docker Containers on Synology NAS (4)

Click on Apply.

Running Docker Containers on Synology NAS (5)

The Docker app is being installed. It may take a few seconds to complete.

Running Docker Containers on Synology NAS (6)

At this point, the Docker app should be installed.

You can click on Open to open the Docker app from the Package Center app as marked in the screenshot below.

Running Docker Containers on Synology NAS (7)

You can also open the Docker app from the Main Menu of Synology Web GUI, as marked in the screenshot below.

Running Docker Containers on Synology NAS (8)

As you’re running the Docker app for the first time, you will see the following dialog window.

Running Docker Containers on Synology NAS (9)

If you don’t want to see it every time you open the Docker app, check the Don’t show this again checkbox and close the dialog window as marked in the screenshot below.

Running Docker Containers on Synology NAS (10)

The Docker app should be ready to use.

Running Docker Containers on Synology NAS (11)

Downloading Docker Images:

You can download Docker images from the Registry tab of the Docker app. By default, the Docker images available in the Docker Hub registry are displayed. You can add other Docker registries and download Docker images from there as well. I will show you how to add your own Docker registry in a later section of this article.

Running Docker Containers on Synology NAS (12)

To download a Docker image from the Docker Hub registry, type in your search keyword (httpd, let’s say) and click on Search as marked in the screenshot below.

Running Docker Containers on Synology NAS (13)

The Docker images that matched the search keyword should be listed.

If you like a Docker image and would like to know more about it, click on theRunning Docker Containers on Synology NAS (14) icon to visit that Docker image’s official web page.For example, to know more about the httpd Docker image, click on the Running Docker Containers on Synology NAS (15) icon as marked in the screenshot below.

Running Docker Containers on Synology NAS (16)

A new browser tab should open the Docker Hub page of the httpd Docker image, as you can see in the screenshot below. You can find all the information you need about the httpd Docker image on this page.

Running Docker Containers on Synology NAS (17)

If you like a Docker image and you would like to download it, select it and click on Download as marked in the screenshot below.

Running Docker Containers on Synology NAS (18)

Select the tag of your selected Docker image from the dropdown menu you want to download and click on Select as marked in the screenshot below.

Running Docker Containers on Synology NAS (19)

As you can see, 1 new image is being downloaded.

Running Docker Containers on Synology NAS (20)

Navigate to the Image section to see the download progress.

As you can see, the httpd: latest Docker image is being downloaded.

As long as the Docker image is downloaded, the Disk icon (Running Docker Containers on Synology NAS (21)) will animate.

Running Docker Containers on Synology NAS (22)

Once the download is complete, the disk icon (Running Docker Containers on Synology NAS (23)) animation should stop.

Running Docker Containers on Synology NAS (24)

I have downloaded another Docker image php: latest, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (25)

The size of the Docker images you’ve downloaded should be displayed in the Image section, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (26)

Managing Docker Images:

You can manage your downloaded Docker images from the Image section of the Docker app.

You can export a Docker image from the Docker app to your Synology NAS shares.

To export a Docker image (php: latest, let’s say), select the Docker image and click on Export as marked in the screenshot below.

Running Docker Containers on Synology NAS (27)

Select a folder (docker-images/, let’s say) from one of your Synology NAS shares (share2, let’s say) where you would like to export the Docker image and click on Select marked in the screenshot below.

Running Docker Containers on Synology NAS (28)

As you can see, the Docker image php: latest is being exported. It may take a few seconds to complete.

Running Docker Containers on Synology NAS (29)

Once the Docker image is exported, you should find a new archive file (php(latest).syno.tar in my case) in the folder you’ve exported; the Docker image can see in the screenshot below.

Running Docker Containers on Synology NAS (30)

Now, let’s remove the php: latest Docker image and import it back.

To remove a Docker image, select the Docker image you want to remove and click on Delete, as shown in the screenshot below.

Running Docker Containers on Synology NAS (31)

To confirm the removal operation, click on Delete as marked in the screenshot below.

Running Docker Containers on Synology NAS (32)

The php: latest Docker image should be removed, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (33)

To import the php: latest Docker image from the exported Docker image file, click on Add > Add From File as marked in the screenshot below.

Running Docker Containers on Synology NAS (34)

Select the Docker image file you’ve just exported and click on Select as marked in the screenshot below.

Running Docker Containers on Synology NAS (35)

The php: latest Docker image should be imported, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (36)

Managing Docker Registries:

By default, the official Docker registry Docker Hub is used on the Docker app. So, you can search for and download all the Docker images available on Docker Hub. That is more than enough for most people. But, if you do need to add third-party Docker registries or your own Docker registries, you can do it as well.

To manage Docker registries, click on Settings from the Registry section as marked in the screenshot below.

Running Docker Containers on Synology NAS (37)

By default, you will have the following Docker registries. The Docker Hub registry and the Aliyun Hub registry.

Running Docker Containers on Synology NAS (38)

Use the Aliyun Hub registry instead of the Docker Hub registry, select it and click on Use as marked in the screenshot below.

Running Docker Containers on Synology NAS (39)

The Aliyun Hub registry should be activated, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (40)

To add a new Docker registry, click on Add as marked in the screenshot below.

Running Docker Containers on Synology NAS (41)

Type in the information of the Docker registry you want to add and click on Confirm.

Running Docker Containers on Synology NAS (42)

A new Docker registry should be added, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (43)

You can edit a Docker registry you’ve added recently as well.

To edit a Docker registry, select it and click on Edit as marked in the screenshot below.

Running Docker Containers on Synology NAS (44)

Now, make the necessary changes and click on Confirm to save the changes.

Running Docker Containers on Synology NAS (45)

To remove a Docker registry, select it and click on Delete as marked in the screenshot below.

Running Docker Containers on Synology NAS (46)

The selected Docker registry should be removed.

Running Docker Containers on Synology NAS (47)

Creating Docker Containers:

To create a Docker container, navigate to the Image section of the Docker app. Then, select the Docker image you want to use to create the container and click on Launch as marked in the screenshot below.

Running Docker Containers on Synology NAS (48)

Type in a name for the container in the Container Name section as marked in the screenshot below.

I will call it http-server-1.

Running Docker Containers on Synology NAS (49)

If you want to run the container as root (with superuser privileges), check the Execute container using the high privilege checkbox as marked in the screenshot below.

Running Docker Containers on Synology NAS (50)

You can limit the CPU and memory usage of the container as well.

To limit resources, check the Enable resource limitation checkbox and set the CPU Priority and Memory Limit as you need.

Running Docker Containers on Synology NAS (51)

To configure some advanced settings for the container, click on Advanced Settings as marked in the screenshot below.

Running Docker Containers on Synology NAS (52)

If you want to start the container automatically when your Synology NAS boots, check the Enable auto-restart checkbox as marked in the screenshot below.

Running Docker Containers on Synology NAS (53)

To create a shortcut of this container on the Synology Web GUI desktop, check the Create shortcut on desktop checkbox and configure it as needed.

Running Docker Containers on Synology NAS (54)

To add volumes to the container, click on the Volume tab of the Advanced Settings window, as shown in the screenshot below.

Running Docker Containers on Synology NAS (55)

If you visit the Docker Hub page of the Docker image you’re using, you should know the volumes you need to create for your container.

For example, I am using the httpd Docker image to create a container. In the Docker Hub page of the httpd Docker image, you can see that I need to create a volume for the container that binds to the folder /usr/local/apache2/htdocs of the container.

Running Docker Containers on Synology NAS (56)

To add a new volume to the container, click on Add Folder as marked in the screenshot below.

Running Docker Containers on Synology NAS (57)

You will be asked to select a folder that you want to bind to your container.

When you install the Docker app on your Synology NAS, it will create a new share docker on the volume where you have installed the Docker app. My advice would be to keep your volumes and other files related to your container in their separate folder in the docker share.

Create a new folder in the docker share, select the docker share and click on Create folder as marked in the screenshot below.

Running Docker Containers on Synology NAS (58)

Type in the name of your container (http-server-1 in my case) and click on OK.

Running Docker Containers on Synology NAS (59)

To create a new folder inside the http-server-1/ folder, select it and click on Create folder.

Running Docker Containers on Synology NAS (60)

Type in a folder name and click on OK. The folder name should resemble the path where you want to mount the folder in your container.

In my case, it’s htdocs as I want to mount it in the /usr/local/apache2/htdocs directory of the container.

Running Docker Containers on Synology NAS (61)

Once the folder is created, select it and click on Select as marked in the screenshot below.

Running Docker Containers on Synology NAS (62)

Now, you have to type in the path where you want to mount the folder you’ve selected.

Running Docker Containers on Synology NAS (63)

In this case, it is the /usr/local/apache2/htdocs directory. Just type in the mount path, and you’re good to go.

Running Docker Containers on Synology NAS (64)

You can configure the network of the container from the Network tab of the Advanced Settings window.

By default, the Docker containers will use a private IP address range that is not accessible from your home network. So, you will have to use port forwarding to access the services running on your Docker containers.

But, if you want to access the Docker containers from your home network directory without port forwarding, check the Use the same network as Docker host checkbox as marked in the screenshot below.

Running Docker Containers on Synology NAS (65)

In the Port Settings tab of the Advanced Settings window, you can configure port forwarding for the Docker container.

Depending on the Docker image you’re using the create the container, you may already have some default port forwarding rules.

I have a default port forwarding rule that forwards the container TCP port 80 to the Synology NAS.

Running Docker Containers on Synology NAS (66)

I will forward the container TCP port 80 to the TCP port 8888 on my Synology NAS. So, the Local Port number will be 8888, and the Container Port number will be 80, and the Type will be TCP.

Running Docker Containers on Synology NAS (67)

If you want to add a new port forwarding rule, click on the + icon as marked in the screenshot below.

Running Docker Containers on Synology NAS (68)

An empty port forwarding rule should be added, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (69)

Type in the Local Port, the Container Port, and select the Type from the dropdown menu as needed. Once you’re done, the port forwarding rule should be added.

Running Docker Containers on Synology NAS (70)

If you want to remove a port forwarding rule, select it and click on the icon as marked in the screenshot below.

Running Docker Containers on Synology NAS (71)

The port forwarding rule should be removed.

Running Docker Containers on Synology NAS (72)

In the Environment tab of the Advanced Settings window, you can configure the environment variables of the container and the command that the container will run when it starts.

Running Docker Containers on Synology NAS (73)

Depending on the Docker image you’re using to create the container, you may already have some environment variables, as shown in the screenshot below.

Running Docker Containers on Synology NAS (74)

If you need to add a new environment variable, click on the + icon as marked in the screenshot below.

Running Docker Containers on Synology NAS (75)

An empty environment variable entry should be added, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (76)

Type in the environment variable name and the value. Once you’re done, it should be added.

Running Docker Containers on Synology NAS (77)

If you want to remove an environment variable, select it and click on the icon as marked in the screenshot below.

Running Docker Containers on Synology NAS (78)

Your selected environment variable should be removed.

Running Docker Containers on Synology NAS (79)

To set the command that you want to run when your Docker container starts, type in the command section’s command as marked in the screenshot below.

Running Docker Containers on Synology NAS (80)

Once you’re done configuring some advanced settings for the container, click on Apply.

Running Docker Containers on Synology NAS (81)

Click on Next.

Running Docker Containers on Synology NAS (82)

The settings that will be used to create the container http-server-1 should be displayed. To create a container with these settings, click on Apply.

A new container http-server-1 should be created.

Running Docker Containers on Synology NAS (83)

You can find all the Docker containers you’ve created in the Container tab of the Docker app. You can manage your containers from here.

Running Docker Containers on Synology NAS (84)

The running containers should also be displayed in the Overview tab of the Docker app, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (85)

Using Docker Containers:

You can see the CPU and memory/RAM usage information and the container runtime of all the Docker containers you’ve created from the Container section of the Docker app.

As you can see, the http-server-1 container that I’ve created earlier is Running for 12 minutes. It’s using 11 MB of memory/RAM and barely uses any CPU resource.

Running Docker Containers on Synology NAS (86)

Let’s create an index.html file in the htdocs/ volume of the container.

Running Docker Containers on Synology NAS (87)

Once the index.html file is created in the volume of the container, you should be able to access it from the HTTP server that is running in the container.

I have forwarded the container TCP port 80 on my Synology NAS port 8888. So, I can access the HTTP server running in the Docker container http-server-1 from a web browser using the URL http://192.168.0.110:8888 as you can see in the screenshot below.

Here, 192.168.0.110 is the IP address of my Synology NAS. It will be different for you. So, make sure to replace it with yours.

Running Docker Containers on Synology NAS (88)

To find more information about a Docker container, select it and click on Details as marked in the screenshot below.

Running Docker Containers on Synology NAS (89)

A new window should be opened.

In the Overview tab, you can see the container’s CPU and RAM usage information, the environment variables added to the container, the configured port forwarding rules of the container, and some container runtime information.

Running Docker Containers on Synology NAS (90)

You can Start, Stop, Restart and Force stop a container from the Overview tab as well.

Running Docker Containers on Synology NAS (91)

In the Process tab, you can find the following information about all the running processes of the container:

Process Identifier: The process ID of the running process.

Execution Command: The command that is used to start the process.

CPU Usage: The percentage of CPU the process is using.

Memory Size: The amount of RAM/memory the process is using.

Running Docker Containers on Synology NAS (92)

In the Log tab, you can find the logs of the running processes on your container. The logs are grouped by date nicely, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (93)

You can start a shell and do administration on your container from the command-line from the Terminal tab. You can also run any command and see its output.

Running Docker Containers on Synology NAS (94)

To access the shell of the container, click on Create as marked in the screenshot below.

Running Docker Containers on Synology NAS (95)

A new shell terminal should be created, as you can see in the screenshot below. You can run any command you want in this shell terminal and administer your container from the command-line.

You can create as many shell terminals as you need.

Running Docker Containers on Synology NAS (96)

You can also run other commands from here.

To do that, click on the Create > Launch with command as marked in the screenshot below.

Running Docker Containers on Synology NAS (97)

Now, type in a command that you want to run and click on OK.

Running Docker Containers on Synology NAS (98)

The command should run on the container, and the output should be displayed, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (99)

You can rename or delete a terminal from the Terminal tab as well.

To rename a terminal, select it and click on Rename.

Running Docker Containers on Synology NAS (100)

Type in a new terminal name and click on OK.

Running Docker Containers on Synology NAS (101)

The terminal should be renamed.

Running Docker Containers on Synology NAS (102)

To remove a terminal, select it and click on Delete.

Running Docker Containers on Synology NAS (103)

The terminal should be removed.

Running Docker Containers on Synology NAS (104)

You can start and stop a container using the toggle button as marked in the screenshot below.

When a container is Running, the toggle button will be blue.

To stop a running container, click on the toggle button.

Running Docker Containers on Synology NAS (105)

The container should be Stopped, as you can see in the screenshot below.

When the container is Stopped, the toggle button should be gray.

Running Docker Containers on Synology NAS (106)

When a container is Stopped, you can edit the configuration of the container.

To edit the container configuration, select the container and click on Edit.

Running Docker Containers on Synology NAS (107)

You should see the same configuration window as you have seen while creating the container. You should be familiar with all the options as I have explained them earlier in this article.

From the General Settings tab, you can change the container name, configure container privileges, configure resource limits, configure container startup settings, and create a desktop shortcut.

Running Docker Containers on Synology NAS (108)

From the Volume tab, you can manage the container volumes.

Running Docker Containers on Synology NAS (109)

From the Port Settings tab, you can manage the port forwarding rules of your container.

Running Docker Containers on Synology NAS (110)

From the Environment tab, you can manage the container environment variables.

Running Docker Containers on Synology NAS (111)

Once you’re done with configuring the container, click on Apply as marked in the screenshot below.

Running Docker Containers on Synology NAS (112)

Once you’ve configured the container, click on the toggle button to start the container.

Running Docker Containers on Synology NAS (113)

The container should be running, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (114)

You can select a container and click on Action to Start, Stop, Restart, and Force Stop your container, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (115)

Cloning Docker Containers:

You can clone the configuration of an existing Docker container to create a new Docker container.

To clone a Docker container, select it and click on Settings > Duplicate settings as marked in the screenshot below.

Running Docker Containers on Synology NAS (116)

Type in a name for the cloned container and click on Apply.

I will call it http-server-2.

Running Docker Containers on Synology NAS (117)

A new container http-server-2 should be created, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (118)

While the http-server-2 container is Stopped, select it and click on Edit.

Running Docker Containers on Synology NAS (119)

Change the local port to 8889 from the Port Settings tab and click on Apply as marked in the screenshot below. The http-server-2 container configuration should be updated.

Running Docker Containers on Synology NAS (120)

Click on the toggle button of the http-server-2 container as marked in the screenshot below to start the container.

Running Docker Containers on Synology NAS (121)

The http-server-2 container should be running, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (122)

As you can see, I can access the HTTP server running on both the http-server-1 and http-server-2 containers.

Running Docker Containers on Synology NAS (123)

Exporting Docker Containers:

You can export Docker containers on your Synology NAS shares and import them later using the Docker app.

To export a Docker container, select it and click on Settings > Export as marked in the screenshot below.

Running Docker Containers on Synology NAS (124)

Select the export type from the Type section.

Export container settings: This option will only export the configuration options of the container in a plain text file. The configuration file can be later used to rebuild the container. This option will not save any filesystem changes you’ve made in the container. So, all of your container data will be lost when you import the container back.

Export container contents and settings: This option will export the container configuration and contents on your Synology NAS share. The filesystem changes of the container will be kept. The exported file will be a lot bigger than the first option.

Running Docker Containers on Synology NAS (125)

Once you’ve selected an export type, select Export to Synology NAS and click on Select a folder from the Destination section as marked in the screenshot below.

Running Docker Containers on Synology NAS (126)

Select a folder where you want to export the container and click on Select.

Running Docker Containers on Synology NAS (127)

Click on Export.

Running Docker Containers on Synology NAS (128)

As you can see, the container is being exported. It may take a while to complete.

Running Docker Containers on Synology NAS (129)

Once the container is exported, a new archive file should be generated in the folder where you’ve exported the container, as shown in the screenshot below.

Running Docker Containers on Synology NAS (130)

Importing Docker Containers:

In this section, I will remove the Docker container I’ve exported earlier and import it back.

Before you can remove a Docker container, you have to stop the container if it’s running.

To stop the http-server-1 container, click on the toggle button of the container from the Container section of the Docker app, as marked in the screenshot below.

Running Docker Containers on Synology NAS (131)

The container should be stopped. Now, select the container and click on Action > Delete as marked in the screenshot below.

Running Docker Containers on Synology NAS (132)

Click on Delete.

Running Docker Containers on Synology NAS (133)

The http-server-1 container should be removed.

Running Docker Containers on Synology NAS (134)

To import the container using the exported container file, click on Settings > Import as marked in the screenshot below.

Running Docker Containers on Synology NAS (135)

Select the exported container file and click on Select as marked in the screenshot below.

Running Docker Containers on Synology NAS (136)

Type in a Container Name and click on OK.

NOTE: Importing a container this way will also create a new container image. If you want to use that image to create a container later, it’s good to give the image a meaningful name and tag name.

You can set the new image name in the Repository textbox and image tag in the Tag textbox of the import Settings window.

Running Docker Containers on Synology NAS (137)

As you can see, the container http-server-1 is imported successfully.

Running Docker Containers on Synology NAS (138)

A new container image is also created, as you can see in the screenshot below.

Running Docker Containers on Synology NAS (139)

Docker Networks:

You can manage Docker networks from the Network tab of the Docker app.

By default, Docker creates a bridge network interface and a host network interface that you can use to get network connectivity in your Docker containers.

Running Docker Containers on Synology NAS (140)

To know more about a network interface, click on the down-arrow icon as marked in the screenshot below.

Running Docker Containers on Synology NAS (141)

As you can see in the screenshot below, information about the bridge and the host network is displayed.

Running Docker Containers on Synology NAS (142)

As you can see, the bridge network interface uses the bridge driver, and the host network interface is using the host driver.

The bridge network interface configures a random IP subnet (172.17.0.0/16 in my case) that is not accessible from your home/office network. You can only access the services running inside the containers connected to the bridge network using port forwarding.

The host network interface will use your home/office network’s DHCP server to assign IP addresses to the containers. So, the containers using the host network will be accessible from your home/office network directly. You won’t need to configure port forwarding.

Running Docker Containers on Synology NAS (143)

Currently, 2 containers (http-server-1 and http-server-2) are using the bridge network interface, as shown in the screenshot below.

Running Docker Containers on Synology NAS (144)

Checking Docker Logs:

You can find the logs of your Docker app from the Log section, as you can see in the screenshot below. The log information will help you find problems with the Docker instance running on your Synology NAS.

Running Docker Containers on Synology NAS (145)

Conclusion:

In this article, I have shown you how to install the Docker app and use Docker on Synology NAS. I have also shown you how to download Docker images from the Docker Hub registry, manage Docker images, manage Docker registries, create and use Docker containers, clone Docker containers, export Docker containers, import Docker containers, check the Docker network interfaces, and check Docker logs using the Docker app on your Synology NAS. This article should help you get started with Docker on your Synology NAS.

Running Docker Containers on Synology NAS (2024)

FAQs

Can Synology run Docker containers? ›

Synology has developed an optimized Docker management GUI for users to create and manage containers on their Synology NAS, and you can find detailed information about our Docker package in the rest of the help articles.

Can you run a NAS in a Docker container? ›

Docker containers can be executed on almost any hardware platform, including, but not limited to physical machines, virtual machines, public cloud services and NAS devices. This compatibility allows for direct migration of an application from one platform to another for easier management.

What is the best NAS to run Docker on? ›

Note: DS723+, DS923+ and DS1522+ remain the best NAS devices for Docker for a range of budgets. Note: Many NAS devices support Docker, but there is also a matter of how well you can run Docker containers on them. Performance is affected by the Docker containers themselves.

What is Docker container in Synology? ›

Docker is a lightweight virtualization application that gives you the ability to run thousands of containers created by developers from all over the world on DSM. The hugely popular built-in image repository, Docker Hub, allows you to find shared applications from other talented developers.

Why use Docker on NAS? ›

Increased data availability: With Docker and NAS/NFS, your data is stored in a centralized location, making it easier to share and access data across different systems and environments. This improves data availability and can help ensure that your applications are always running with the latest data.

Can I run TrueNAS as a Docker container? ›

That's right, you can work with Docker images in TrueNAS and deploy apps like Colabora, Nextcloud, and more. Even better, it's much easier than you might think. I'm going to walk you through the steps required to get TrueNAS ready to work with Docker Images.

Where is Docker for Synology? ›

The default location for Docker volumes (using the docker Synology app) is /volume1/docker.

Can Docker run on anything? ›

Does Docker run on Linux, macOS, and Windows? You can run both Linux and Windows programs and executables in Docker containers.

How much RAM should I allocate to Docker? ›

Each Docker container you run consumes a tiny bit of system resources. If you go wild, running hundreds of containers without much RAM, your system is gonna choke. As a thumb rule, Docker itself recommends 2GB. But if your apps are the heavyweight champs, you might need way more.

Should a NAS run all the time? ›

Your files are stored on the NAS server and can be synchronized, or automatically kept up-to-date, on all of your devices. This service needs to always be online so the NAS should always be on. If you are using your NAS for web hosting like I am, you need to keep it online 24/7.

How to install Docker on NAS? ›

Summary
  1. Place the Docker binaries in /usr/local/bin/
  2. Create a Docker config file /usr/local/etc/docker/docker. json.
  3. Configure Docker to save its data to /volume1/docker/var.
  4. Create a script to start Docker on boot at /usr/local/etc/rc. d/docker. sh.
  5. Create a docker group.
  6. Place a docker-compose script in /usr/local/bin/

Why use Portainer on Synology? ›

With Portainer you can deploy any compose in the blink of an eye. From the tests I've run, Container Manager takes twice as long to deploy a code. Portainer is 3x faster when it comes to managing your Docker containers. You can start and stop containers, delete them, change the restart policy etc.

What operating system does Synology NAS use? ›

DiskStation Manager (DSM) is a web-based operating system designed specifically for Synology products. With DSM, you quickly and easily accomplish the following on your Synology NAS: Modify and personalize system settings. Install and open applications and packages.

What type of Linux is Synology? ›

Synology's operating system, DSM, is a GNU/Linux distro. It runs the exact same stuff as any other Linux distro, including the kernel and all services and the filesystem.

What can run Docker containers? ›

You can run both Linux and Windows programs and executables in Docker containers. The Docker platform runs natively on Linux (on x86-64, ARM and many other CPU architectures) and on Windows (x86-64).

How do I export a Docker container from Synology? ›

Open your Container Manager package. In the left sidebar click on Container. Select the container you want to Export, then click on the Action tab and, in the dropdown menu, click Export. Follow the instructions in the image below.

Top Articles
Latest Posts
Article information

Author: Velia Krajcik

Last Updated:

Views: 6719

Rating: 4.3 / 5 (54 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Velia Krajcik

Birthday: 1996-07-27

Address: 520 Balistreri Mount, South Armand, OR 60528

Phone: +466880739437

Job: Future Retail Associate

Hobby: Polo, Scouting, Worldbuilding, Cosplaying, Photography, Rowing, Nordic skating

Introduction: My name is Velia Krajcik, I am a handsome, clean, lucky, gleaming, magnificent, proud, glorious person who loves writing and wants to share my knowledge and understanding with you.