chore: rename zipline-postgresql service to zipline-db in compose.yaml

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
nathan 2026-04-24 13:14:28 -04:00
parent c1ab44a7f7
commit 0b4a122311

View File

@ -1,7 +1,7 @@
services: services:
zipline-postgresql: zipline-db:
image: postgres:16 image: postgres:16
container_name: zipline-postgresql container_name: zipline-db
restart: unless-stopped restart: unless-stopped
networks: networks:
- proxy-net - proxy-net
@ -28,9 +28,9 @@ services:
networks: networks:
- proxy-net - proxy-net
environment: environment:
- DATABASE_URL=postgres://${POSTGRESQL_USER:-zipline}:${POSTGRESQL_PASSWORD}@zipline-postgresql:5432/${POSTGRESQL_DB:-zipline} - DATABASE_URL=postgres://zipline:${POSTGRESQL_PASSWORD}@zipline-db:5432/${POSTGRESQL_DB:-zipline}
depends_on: depends_on:
zipline-postgresql: zipline-db:
condition: service_healthy condition: service_healthy
volumes: volumes:
- '/mnt/appdata/zipline/uploads:/zipline/uploads' - '/mnt/appdata/zipline/uploads:/zipline/uploads'