Running docker securely

夙愿已清 提交于 2020-01-01 05:29:27

问题


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.


回答1:


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/*.



来源:https://stackoverflow.com/questions/33315035/running-docker-securely

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!