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.
This commit is contained in:
2026-05-19 11:34:42 +02:00
parent 797619acd9
commit e16c13a1e7
2 changed files with 3 additions and 3 deletions

View File

@@ -111,7 +111,7 @@ docker compose up --build web
This starts Django on: 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: Run the scheduler alongside the web admin:

View File

@@ -9,7 +9,7 @@ services:
POBSYNC_HOME: "/opt/pobsync" POBSYNC_HOME: "/opt/pobsync"
POBSYNC_SQLITE_PATH: "/var/lib/pobsync/pobsync.sqlite3" POBSYNC_SQLITE_PATH: "/var/lib/pobsync/pobsync.sqlite3"
ports: ports:
- "8000:8000" - "8010:8000"
volumes: volumes:
- pobsync_state:/opt/pobsync - pobsync_state:/opt/pobsync
- pobsync_db:/var/lib/pobsync - pobsync_db:/var/lib/pobsync
@@ -45,7 +45,7 @@ services:
db: db:
condition: service_healthy condition: service_healthy
ports: ports:
- "8000:8000" - "8010:8000"
volumes: volumes:
- pobsync_state:/opt/pobsync - pobsync_state:/opt/pobsync