Community maintained Docker config for the knot server

owner no secret

Changed files
+3 -4
+1 -1
docker-compose.yml
··· 3 3 build: . 4 4 environment: 5 5 KNOT_SERVER_HOSTNAME: ${KNOT_SERVER_HOSTNAME} 6 - KNOT_SERVER_SECRET: ${KNOT_SERVER_SECRET} 6 + KNOT_SERVER_OWNER: ${KNOT_SERVER_OWNER} 7 7 KNOT_SERVER_DB_PATH: /app/knotserver.db 8 8 KNOT_REPO_SCAN_PATH: /home/git/repositories 9 9 KNOT_SERVER_INTERNAL_LISTEN_ADDR: localhost:5444
+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 -