Community maintained Docker config for the knot server
0
fork

Configure Feed

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

owner no secret

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