From b0bcc7e224f3fe3e625745730eac416e7ecde8da Mon Sep 17 00:00:00 2001 From: Justin Visser Date: Thu, 11 Jun 2026 15:19:55 +0200 Subject: [PATCH] README: the Caddy network on the server is named web --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a1600dc..e839186 100644 --- a/README.md +++ b/README.md @@ -96,17 +96,17 @@ services: container_name: spreadlab restart: unless-stopped networks: - - caddy + - web networks: - caddy: + web: external: true ``` The network name must match the one Caddy actually uses (`docker network -ls` on the server). The Caddyfile entry itself is managed by hand on the -server, not in this repo: add a site block for the public hostname that -reverse-proxies to `spreadlab:8080`, and reload Caddy. +ls` on the server; here `web`). The Caddyfile entry itself is managed by +hand on the server, not in this repo: add a site block for the public +hostname that reverse-proxies to `spreadlab:8080`, and reload Caddy. To run the image anywhere else: `docker run -p 8080:8080 ghcr.io/justinzeus/spreadlab:latest`.