From 1d00aff570aca81279aea46f9fcfcfa52fd179da Mon Sep 17 00:00:00 2001 From: cosmichorror.dev Date: Wed, 29 Apr 2026 07:08:58 +0000 Subject: [PATCH] more newcomer friendly compose yay, an up-to-date prebuilt image! this changes the provided compose file to be more in-line with what a user would likely expect (as opposed to having to clone the full repo to build the image locally). the instructions about how to build the image with a compose file in the readme are still valid in-case people still want to go that route (thanks oyster.cafe!) --- docker-compose.yml | 6 +----- readme.md | 1 + 2 file(s) changed, 2 insertion(s)(+), 5 deletion(s)(-) diff --git a/docker-compose.yml b/docker-compose.yml --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,10 +1,6 @@ services: knot: - build: - context: . - args: - UID: 1000 - GID: 1000 + image: atcr.io/tangled.org/knot:latest environment: KNOT_SERVER_HOSTNAME: ${KNOT_SERVER_HOSTNAME} KNOT_SERVER_OWNER: ${KNOT_SERVER_OWNER} diff --git a/readme.md b/readme.md --- a/readme.md +++ b/readme.md @@ -63,6 +63,7 @@ The simplest way to set up your own knot is to use the provided compose file and run the following: ```sh +mkdir keys repositories server export KNOT_SERVER_HOSTNAME=example.com export KNOT_SERVER_OWNER=did:plc:yourdidgoeshere export KNOT_SERVER_PORT=443 -- tangled.sh