I have a Synology Disk Station 118 (appears it is using Arm8 processor)
There is no Docker package found by searching within Package Manager I found this article but the link to Synology packages only has X64 packages and article says Docker does not work from Arm
But it does seem from various articles Docker is available from arm8 platforms
https://github.com/docker-library/official-images#architectures-other-than-amd64
and there is a link to unofficial
https://hub.docker.com/u/arm64v8/
but aren't these just containers rather than than the actual docker itself ?
So it is possible to install on my Synology Nas 118. This is required to test a docker file for my application.
The answer is YES. Any ARM type of Synology NAS supports docker, not completely but it can be enough. Please follow the steps below to install docker/dockerd in ARM Synology NAS.
/etc/docker/daemon.json
configuration file with the following configuration:{
"storage-driver": "vfs",
"iptables": false,
"bridge": "none"
}
Please note, you need to set storage drive vfs, iptables off, bridge off due to a Linux kernel problem. And you need to run docker container with --network=host mode. It is not usual, but it is necessary due to Synology NAS kernel limitations.
Or you can have a try with this automatic script: https://raw.githubusercontent.com/wdmomoxx/catdriver/master/install-docker.sh