Permissions everywhere!

This commit is contained in:
Václav Valíček 2018-10-28 16:04:51 +01:00
parent d4ea73f9b2
commit 637576cee8
No known key found for this signature in database
GPG Key ID: 7CF44871CEA75938
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ VOLUME /data
RUN apk add --no-cache git bash openssh parallel openssh-keygen vim shadow
RUN useradd --uid 10000 -ms /bin/bash executor
RUN chown executor:executor /data
RUN echo "* * * * * /usr/local/bin/cron-command" >> /etc/crontabs/executor
RUN echo "* * * * * /usr/local/bin/cron-command" >> /etc/crontabs/root
RUN touch /var/run/cloner.pid
RUN chown executor:executor /var/run/cloner.pid
RUN apk del shadow

View File

@ -12,6 +12,7 @@ fi
if [ $UID -eq 0 ]
then
find /data \! -user executor -exec chown executor:executor {} \;
chown executor:executor /var/run/cloner.pid
su executor -c cron-command
exit $?
fi