docker to sudoers
# my case solution sudo setfacl -m user:$USER:rw /var/run/docker.sock #other solution sudo usermod -aG docker $USER #an other solution sudo groupadd docker sudo gpasswd -a $USER docker docker run hello-world
docker to sudoers
# my case solution sudo setfacl -m user:$USER:rw /var/run/docker.sock #other solution sudo usermod -aG docker $USER #an other solution sudo groupadd docker sudo gpasswd -a $USER docker docker run hello-world
docker sudo how to add user
FROM alpine:latest RUN apk --no-cache update \ && apk --no-cache add sudo copy run.sh /usr/local/ RUN addgroup -S cassandra && adduser -S cassandra -G cassandra RUN chown -R cassandra:cassandra /home/cassandra/ RUN echo 'cassandra ALL=(ALL) /bin/su' >> /etc/sudoers USER cassandra ENTRYPOINT [ "sh","/usr/local/run.sh"]
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us