this repo has no description

Compare changes

Choose any two refs to compare.

Changed files
+52 -4
rootfs
etc
ssh
+28 -1
Dockerfile
··· 2 env KNOT_REPO_SCAN_PATH=/home/git/repositories 3 env CGO_ENABLED=1 4 5 - arg TAG='v1.8.0-alpha' 6 7 workdir /app 8 run apk add git gcc musl-dev
··· 2 env KNOT_REPO_SCAN_PATH=/home/git/repositories 3 env CGO_ENABLED=1 4 5 + arg TAG='v1.9.0-alpha' 6 7 workdir /app 8 run apk add git gcc musl-dev 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + label org.opencontainers.image.vendor='tangled.sh' 21 + label org.opencontainers.image.licenses='MIT' 22 + 23 + arg UID=1000 24 + arg GID=1000 25 + 26 + copy rootfs . 27 + run chmod 755 /etc 28 + run chmod -R 755 /etc/s6-overlay 29 + run apk add shadow s6-overlay execline openssl openssh git curl bash 30 + run groupadd -g $GID -f git 31 + run useradd -u $UID -g $GID -d /home/git git 32 + run openssl rand -hex 16 | passwd --stdin git 33 + run mkdir -p /home/git/repositories && chown -R git:git /home/git 34 + copy --from=builder /usr/bin/knot /usr/bin 35 + run mkdir /app && chown -R git:git /app
+3
rootfs/etc/ssh/sshd_config.d/authorized_keys_command.conf
···
··· 1 + Match User git 2 + AuthorizedKeysCommand /usr/bin/knot keys -o authorized-keys -git-dir /home/git/repositories 3 + AuthorizedKeysCommandUser nobody
+5 -1
docker-compose.yml
··· 1 services: 2 knot: 3 - build: . 4 environment: 5 KNOT_SERVER_HOSTNAME: ${KNOT_SERVER_HOSTNAME} 6 KNOT_SERVER_OWNER: ${KNOT_SERVER_OWNER}
··· 1 services: 2 knot: 3 + build: 4 + context: . 5 + args: 6 + UID: 1000 7 + GID: 1000 8 environment: 9 KNOT_SERVER_HOSTNAME: ${KNOT_SERVER_HOSTNAME} 10 KNOT_SERVER_OWNER: ${KNOT_SERVER_OWNER}
+16 -2
readme.md
··· 29 The command above for example will build the latest commit on the `master` 30 branch. 31 32 <hr style="margin-bottom: 20px; margin-top: 10px" /> 33 34 - When using compose, it can be specified as a build argument which will be 35 passed to the builder. 36 37 ```yaml 38 build: 39 context: . 40 - args: { TAG: master } 41 ``` 42 43 This will for example tell docker to build it using the `master` branch like
··· 29 The command above for example will build the latest commit on the `master` 30 branch. 31 32 + By default it will also create a `git` user with user and group ID 1000:1000, 33 + but you can change it with the `UID` and `GID` build arguments. 34 + 35 + ```sh 36 + docker build -t knot:latest --build-arg UID=$(id -u) GID=$(id -g) 37 + ``` 38 + 39 + The command above for example will create a user with the host user's UID and GID. 40 + This is useful if you are bind mounting the repositories and app folder on the host, 41 + as in the provided `docker-compose.yml` file. 42 + 43 <hr style="margin-bottom: 20px; margin-top: 10px" /> 44 45 + When using compose, these can be specified as build arguments which will be 46 passed to the builder. 47 48 ```yaml 49 build: 50 context: . 51 + args: 52 + TAG: master 53 + UID: 1000 54 + GID: 1000 55 ``` 56 57 This will for example tell docker to build it using the `master` branch like