this repo has no description

Compare changes

Choose any two refs to compare.

+17 -8
+14 -5
Dockerfile
··· 1 1 2 + env KNOT_REPO_SCAN_PATH=/home/git/repositories 3 + env CGO_ENABLED=1 2 4 5 + arg TAG='v1.9.0-alpha' 3 6 4 - 5 - 6 - 7 - 8 - 7 + workdir /app 8 + run apk add git gcc musl-dev 9 9 10 10 11 11 ··· 21 21 label org.opencontainers.image.licenses='MIT' 22 22 23 23 copy rootfs . 24 + run chmod 755 /etc 24 25 run chmod -R 755 /etc/s6-overlay 25 26 run apk add shadow s6-overlay execline openssl openssh git curl bash 26 27 run useradd -d /home/git git && openssl rand -hex 16 | passwd --stdin git 28 + 29 + 30 + run mkdir /app && chown -R git:git /app 31 + 32 + healthcheck --interval=60s --timeout=30s --start-period=5s --retries=3 \ 33 + cmd curl -f http://localhost:5555 || exit 1 34 + 35 + entrypoint ["/init"]
+1
.gitignore
··· 1 + .env
+2 -3
readme.md
··· 1 1 # Knot Docker 2 2 3 - > **IMPORTANT** 3 + > **IMPORTANT** 4 4 > This is a community maintained repository, support is not guaranteed. 5 5 6 6 Docker container and compose setup to run a [Tangled](https://tangled.sh) knot ··· 50 50 51 51 ```sh 52 52 export KNOT_SERVER_HOSTNAME=example.com 53 - export KNOT_SERVER_SECRET=KNOT_TOKEN_HERE 53 + export KNOT_SERVER_OWNER=did:plc:yourdidgoeshere 54 54 export KNOT_SERVER_PORT=443 55 55 docker compose up -d 56 56 ``` 57 57 58 58 This will setup everything for you including a reverse proxy. 59 -