From 3bac14f15e6df4578acd74d59696ac277c46feea Mon Sep 17 00:00:00 2001 From: Aster Fialla Date: Thu, 12 Feb 2026 21:40:07 -0500 Subject: [PATCH] tweaking compose to actually work hopefully --- compose.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/compose.yaml b/compose.yaml index d0e50ba..58ba970 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,9 +1,9 @@ -services: +services: postgres: image: postgres:latest container_name: pluralflux-postgres environment: - POSTGRES_PASSWORD: /run/secrets/postgres_pwd + POSTGRES_PASSWORD_FILE: /run/secrets/postgres_pwd secrets: - postgres_pwd volumes: @@ -16,21 +16,18 @@ - 5050:80 environment: # Required by pgAdmin - PGADMIN_DEFAULT_EMAIL: /run/secrets/postgres_email - PGADMIN_DEFAULT_PASSWORD: /run/secrets/postgres_pwd + PGADMIN_DEFAULT_EMAIL: pieartsy@pm.me + PGADMIN_DEFAULT_PASSWORD_FILE: /run/secrets/postgres_pwd # Don't require the user to login PGADMIN_CONFIG_SERVER_MODE: 'False' # Don't require a "master" password after logging in PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: 'False' secrets: - postgres_pwd - - postgres_email volumes: pgdata: secrets: postgres_pwd: - file: secrets/postgres_password.txt - postgres_email: - file: ./postgres-email.txt \ No newline at end of file + file: ./secrets/postgres-password.txt