heimdall / Dockerfile
rm-dev-null's picture
Update Dockerfile
6af6f40 verified
raw
history blame contribute delete
266 Bytes
FROM linuxserver/heimdall
# Use environment variables to control permissions
ENV PUID=1000
ENV PGID=1000
# Modify existing abc user instead of creating new
RUN \
usermod -l newusername abc && \
groupmod -n newgroupname abc && \
usermod -d /app -m newusername