Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running docker securely

I understand that the docker daemon requires to runs as root so I'm told this can cause some security implications such as if the container were compromised, attackers can make changes to the host's system files.

What precautions can I take to mitigate damage in the case of an attack?

Is there a practice that I should be aware when running the docker daemon? I've thought about having a vagrant to up a vm and have docker run in the vm instead.

like image 651
jkris Avatar asked Oct 24 '15 06:10

jkris


1 Answers

The main source of information regarding docker security practice is the page on "Docker security".

only trusted users should be allowed to control your Docker daemon.
This is a direct consequence of some powerful Docker features.

Specifically, Docker allows you to share a directory between the Docker host and a guest container; and it allows you to do so without limiting the access rights of the container.

If you expose the REST API, you should do so over https.

Finally, if you run Docker on a server, it is recommended to run exclusively Docker in the server, and move all other services within containers controlled by Docker

Regarding the VM, see "Are Docker containers really secure?"

The biggest problem is everything in Linux is not namespaced. Currently, Docker uses five namespaces to alter processes view of the system: Process, Network, Mount, Hostname, Shared Memory.

While these give the user some level of security it is by no means comprehensive, like KVM (Kernel-based Virtual Machine).
In a KVM environment processes in a virtual machine do not talk to the host kernel directly. They do not have any access to kernel file systems like /sys and /sys/fs, /proc/*.

like image 135
VonC Avatar answered Nov 15 '22 17:11

VonC