mirror of https://github.com/lukechilds/umbrel.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
288 B
21 lines
288 B
ARG IMG
|
|
ARG VER
|
|
|
|
FROM ${IMG}:${VER}
|
|
|
|
ARG ID=1000
|
|
ARG DIR=/data/
|
|
|
|
RUN addgroup --gid ${ID} lncm
|
|
|
|
RUN adduser --uid ${ID} \
|
|
--home ${DIR} \
|
|
--disabled-password \
|
|
--gecos "" \
|
|
--ingroup lncm \
|
|
lncm
|
|
|
|
USER lncm
|
|
|
|
VOLUME ${DIR}
|
|
|
|
|