this repo has no description

owner no secret

Changed files
+3 -4
+1 -1
docker-compose.yml
···
build: .
environment:
KNOT_SERVER_HOSTNAME: ${KNOT_SERVER_HOSTNAME}
-
KNOT_SERVER_SECRET: ${KNOT_SERVER_SECRET}
+
KNOT_SERVER_OWNER: ${KNOT_SERVER_OWNER}
KNOT_SERVER_DB_PATH: /app/knotserver.db
KNOT_REPO_SCAN_PATH: /home/git/repositories
KNOT_SERVER_INTERNAL_LISTEN_ADDR: localhost:5444
+2 -3
readme.md
···
# Knot Docker
-
> **IMPORTANT**
+
> **IMPORTANT**
> This is a community maintained repository, support is not guaranteed.
Docker container and compose setup to run a [Tangled](https://tangled.sh) knot
···
```sh
export KNOT_SERVER_HOSTNAME=example.com
-
export KNOT_SERVER_SECRET=KNOT_TOKEN_HERE
+
export KNOT_SERVER_OWNER=did:plc:yourdidgoeshere
export KNOT_SERVER_PORT=443
docker compose up -d
```
This will setup everything for you including a reverse proxy.
-