From 584a6fa3d25efc060ab7fa650601a99fae2a6f41 Mon Sep 17 00:00:00 2001 From: wallaceosmar Date: Sat, 23 Nov 2024 18:50:01 +0000 Subject: [PATCH] Atualizar docker-compose.yaml --- docker-compose.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 1e939ab..3ed44ea 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -3,7 +3,6 @@ services: image: git.masscivicdynamic.com/masscivicdynamic/nexo-cloud:latest ports: - "8080:8080" - - "8443:8443" environment: - SSL_MODE=${SSL_MODE-off} - APP_KEY=${APP_KEY} @@ -23,9 +22,9 @@ services: postgres: image: postgres:16-alpine environment: - - POSTGRES_USER="${DB_USERNAME:-nexo-cloud}" - - POSTGRES_PASSWORD="${DB_PASSWORD:-nexo-cloud}" - - POSTGRES_DB="${DB_DATABASE:-nexo-cloud}" + - POSTGRES_USER=${DB_USERNAME:-nexo-cloud} + - POSTGRES_PASSWORD=${DB_PASSWORD:-nexo-cloud} + - POSTGRES_DB=${DB_DATABASE:-nexo-cloud} healthcheck: test: [ "CMD-SHELL", "pg_isready -U ${DB_USERNAME}", "-d", "${DB_DATABASE:-nexo-cloud}" ] interval: 5s