this repo has no description

Compare changes

Choose any two refs to compare.

Changed files
+4 -4
+1
.gitignore
···
··· 1 + .env
+2 -3
readme.md
··· 1 # Knot Docker 2 3 - > **IMPORTANT** 4 > This is a community maintained repository, support is not guaranteed. 5 6 Docker container and compose setup to run a [Tangled](https://tangled.sh) knot ··· 50 51 ```sh 52 export KNOT_SERVER_HOSTNAME=example.com 53 - export KNOT_SERVER_SECRET=KNOT_TOKEN_HERE 54 export KNOT_SERVER_PORT=443 55 docker compose up -d 56 ``` 57 58 This will setup everything for you including a reverse proxy. 59 -
··· 1 # Knot Docker 2 3 + > **IMPORTANT** 4 > This is a community maintained repository, support is not guaranteed. 5 6 Docker container and compose setup to run a [Tangled](https://tangled.sh) knot ··· 50 51 ```sh 52 export KNOT_SERVER_HOSTNAME=example.com 53 + export KNOT_SERVER_OWNER=did:plc:yourdidgoeshere 54 export KNOT_SERVER_PORT=443 55 docker compose up -d 56 ``` 57 58 This will setup everything for you including a reverse proxy.
+1 -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