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

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

View File

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