From e16c13a1e7fd0c969286c5c60b11b649a1013c69 Mon Sep 17 00:00:00 2001 From: Peter van Arkel Date: Tue, 19 May 2026 11:34:42 +0200 Subject: [PATCH] Move Docker web admin port to 8010 Publish the Django web container on host port 8010 while keeping the internal runserver port at 8000. Update the Docker README URL so the admin location matches the running compose setup. --- README.md | 2 +- docker-compose.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ddc9dd4..632194a 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ docker compose up --build web This starts Django on: -- http://127.0.0.1:8000/admin/ +- http://127.0.0.1:8010/admin/ Run the scheduler alongside the web admin: diff --git a/docker-compose.yml b/docker-compose.yml index 546e599..ea6b64c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,7 +9,7 @@ services: POBSYNC_HOME: "/opt/pobsync" POBSYNC_SQLITE_PATH: "/var/lib/pobsync/pobsync.sqlite3" ports: - - "8000:8000" + - "8010:8000" volumes: - pobsync_state:/opt/pobsync - pobsync_db:/var/lib/pobsync @@ -45,7 +45,7 @@ services: db: condition: service_healthy ports: - - "8000:8000" + - "8010:8000" volumes: - pobsync_state:/opt/pobsync