Answers for "docker create a user and install everything with that user"

2

add user to docker group

sudo usermod -aG docker $USER   #$USER is your username
Posted by: Guest on November-21-2020
1

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"]
Posted by: Guest on October-06-2020

Code answers related to "docker create a user and install everything with that user"

Browse Popular Code Answers by Language