Docker is a container runtime environment that allows programs to operate in a jailed environment without any required external dependencies. Containers are similar in some concepts to virtual machines, however, they do not use a hypervisor and run in a single kernel instance, often sharing the instance with other containers. One of the prime features […]
Archives for September 2020
Unable to run NGINX Docker due to “13: Permission denied”
The Problem The NGINX docker container was started using the below command: # docker run –detach –name nginx_server nginx 4ffbcd5ee796b8cce3f2c6ed4cce8927d2b13a040af07b36f7a866b2157290e8 But user failed to get connection to the NGINX server. Upon troubleshooting user found below error logs: # tail -f /var/log/audit/audit.log type=AVC msg=audit(1565283160.116:316): avc: denied { write } for pid=2387 comm=”nginx” name=”nginx” dev=”dm-0″ ino=140648937 scontext=system_u:system_r:container_t:s0:c345,c550 […]