Podman config for the Tangled Knot server.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use lower UID/GID for git user to avoid taking up such a large block

sullen d294b334 2e20ee82

+7 -2
+7 -2
Containerfile
··· 22 22 COPY --from=builder /VERSION / 23 23 COPY rootfs / 24 24 25 - RUN groupadd -g 9001 git && \ 26 - useradd -u 9001 -g git -m -d /home/git -s /bin/bash -p "*" git && \ 25 + ARG UID=1000 26 + ARG GID=1000 27 + 28 + RUN groupadd -g $GID git && \ 29 + useradd -u $UID -g git -m -d /home/git -s /bin/bash -p "*" git && \ 27 30 mkdir -p /etc/ssh/keys && \ 28 31 chmod 755 /etc && \ 29 32 chmod -R 755 /etc/s6-overlay 33 + 34 + USER git 30 35 31 36 ENTRYPOINT ["/init"]