Skip to content

Commit

Permalink
fix - adjust docker permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
chaddyc committed Dec 31, 2024
1 parent f6391cd commit ded59ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ RUN ./bin/installdependencies.sh
RUN useradd -m -s /bin/bash runner && \
echo "runner ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers

RUN getent group docker || groupadd -g 999 docker && \
usermod -aG docker runner
RUN usermod -aG docker runner && \
chmod 666 /var/run/docker.sock

RUN chown -R runner:runner /runner

Expand Down

0 comments on commit ded59ee

Please sign in to comment.