Refine ddev config

This commit is contained in:
Björn Fromme
2020-01-24 11:37:15 +01:00
parent f89bc3620c
commit 1beadfaa24
18 changed files with 410 additions and 147 deletions
+9
View File
@@ -0,0 +1,9 @@
ARG BASE_IMAGE
FROM $BASE_IMAGE
ARG username
ARG uid
ARG gid
RUN (groupadd --gid $gid "$username" || groupadd "$username" || true) && (useradd -l -m -s "/bin/bash" --gid "$username" --comment '' --uid $uid "$username" || useradd -l -m -s "/bin/bash" --gid "$username" --comment '' "$username")