HU subtitle & EN subtitle!
📺 In this video I show you how to install Portainer in Docker on Synology NAS.
Portainer cannot be installed using Docker GUI on Synology NAS because we need to mount the /var/run/docker.sock file, which is not supported by the GUI.
🎬 CHAPTERS:
00:00 Introduction Synology, Docker
00:49 Installing Docker on Synology NAS
00:57 Portainer
01:40 Portainer installation
03:06 Portainer launch
🔗 Docker's official site
https://www.docker.com/
🔗 Synology Add-on packages
https://www.synology.com/en-us/dsm/pa...
🔗 Portainer's official site
https://www.portainer.io/
🔗 Why Portainer
https://www.portainer.io/why-portainer
🔗 Portainer is a GUI alternative to Synology Docker GUI
https://www.portainer.io/blog/portain...
🔗 Installing Portainer CE on Linux with Docker
https://docs.portainer.io/start/insta...
👉 You have to update in the command "-p 9443:9443" and "-v portainer_data:/data"
docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
🔗 Overview of Docker Compose
https://docs.docker.com/compose/
🔗 Composerize website
https://www.composerize.com/
🔸 Docker run command to create Portainer container:
docker run -d -p 8000:8000 -p 9000:9000 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /volume1/docker/portainer :/data portainer/portainer-ce:latest
🔸 Docker run command split into multiple lines with a backslash (\)
docker run -d \
-p 8000:8000 \
-p 9000:9000 \
--name portainer \
--restart=always \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /volume1/docker/portainer:/data \
portainer/portainer-ce:latest
💻 The system used for the presentation:
Synology DS718+, Intel Celeron J3455, 2048 MB, DSM 7.1.1
Docker 20.10.3-1308