build: docker-compose service → roundtable

Service, container_name, image, and env var name flipped to roundtable.
DB credentials kept as fabledscryer to preserve the existing pgdata
volume — a separate migration can rename the role/db later if desired.
This commit is contained in:
2026-04-13 18:40:26 -04:00
parent ee0b22bafd
commit 62d28b1032
+4 -2
View File
@@ -1,6 +1,8 @@
services: services:
app: roundtable:
build: . build: .
container_name: roundtable
image: roundtable:latest
ports: ports:
- "5000:5000" - "5000:5000"
volumes: volumes:
@@ -9,7 +11,7 @@ services:
- /mnt/Data/traefik/log:/var/log/traefik:ro - /mnt/Data/traefik/log:/var/log/traefik:ro
- /var/run/docker.sock:/var/run/docker.sock:ro - /var/run/docker.sock:/var/run/docker.sock:ro
environment: environment:
- FABLEDSCRYER_DATABASE_URL=postgresql+asyncpg://fabledscryer:fabledscryer@db/fabledscryer - ROUNDTABLE_DATABASE_URL=postgresql+asyncpg://fabledscryer:fabledscryer@db/fabledscryer
depends_on: depends_on:
db: db:
condition: service_healthy condition: service_healthy