configure docker as non root code example
Example 1: non-docker root
sudo setfacl -m user:$USER:rw /var/run/docker.sock
Example 2: setting docker as a non root user
##########################################
# Dockerfile to change from root to
# non-root privilege
###########################################
# Base image is CentOS 7
FROM Centos:7
# Add a new user "john" with user id 8877
RUN useradd -u 8877 john
# Change to non-root privilege
USER john