How To Enable Docker On A Virtuozzo 7 VPS
By default, the required netfilter access to run Docker containers isn't sufficient on Virtuozzo VPSs
The VPS must be powered down to perform the necessary configuration changes.
We will use VPS container dockertest.corey-regan.ca
for the following instructions.
[root@virtuozzo ~]# vzctl stop dockertest.corey-regan.ca
Stopping the Container ...
Container was stopped
Unmount image: /vz/private/e54b18b7-1491-4861-8c7c-9b46ce30852d/root.hdd
Container is unmounted
[root@virtuozzo ~]# prlctl set dockertest.corey-regan.ca --features bridge:on
set features: bridge:on
The CT has been successfully configured.
[root@virtuozzo ~]# prlctl set dockertest.corey-regan.ca --netfilter full
Set netfilter: full
The CT has been successfully configured.
[root@virtuozzo ~]# vzctl start dockertest.corey-regan.ca
Starting Container ...
Mount image: /vz/private/e54b18b7-1491-4861-8c7c-9b46ce30852d/root.hdd
Container is mounted
Setting permissions for image=/vz/private/e54b18b7-1491-4861-8c7c-9b46ce30852d/root.hdd
Os release: 3.10.0
Configure memguarantee: 0%
Setting permissions for image=/vz/private/e54b18b7-1491-4861-8c7c-9b46ce30852d/root.hdd
CPU limit: 100.0%
Set up ioprio: 5
Adding ip address(es): 204.13.48.99
Set hostname: dockertest.corey-regan.ca
File resolv.conf was modified
Container start in progress...
[root@virtuozzo ~]# prlctl exec dockertest.corey-regan.ca yum install docker -y
[root@virtuozzo ~]# \
prlctl exec dockertest.corey-regan.ca systemctl enable docker && \
prlctl exec dockertest.corey-regan.ca systemctl start docker
[root@virtuozzo ~]# prlctl exec dockertest.corey-regan.ca systemctl status docker
? docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
[root@virtuozzo ~]# prlctl exec dockertest.corey-regan.ca docker run hello-world
Hello from Docker!
This message shows that your installation appears to be working correctly.