From c1ab44a7f784a4d14c98fa028da4317ccb4c8685 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 24 Apr 2026 13:09:13 -0400 Subject: [PATCH] chore: rename postgresql service to zipline-postgresql in compose.yaml Co-authored-by: Copilot --- nodes/heimdall/zipline/compose.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nodes/heimdall/zipline/compose.yaml b/nodes/heimdall/zipline/compose.yaml index e560c32..870d92c 100644 --- a/nodes/heimdall/zipline/compose.yaml +++ b/nodes/heimdall/zipline/compose.yaml @@ -1,5 +1,5 @@ services: - postgresql: + zipline-postgresql: image: postgres:16 container_name: zipline-postgresql restart: unless-stopped @@ -28,9 +28,9 @@ services: networks: - proxy-net 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: - postgresql: + zipline-postgresql: condition: service_healthy volumes: - '/mnt/appdata/zipline/uploads:/zipline/uploads'