From fc1fc998816a0c35cf79781fb86409f09c5879a3 Mon Sep 17 00:00:00 2001 From: Austin Turner Date: Thu, 4 Apr 2024 13:44:34 -0700 Subject: [PATCH] Fix docker compose --- docker-compose.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2c4064404..978c48bbc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,22 +8,19 @@ services: condition: service_healthy env_file: - .env.example - - .env environment: NODE_ENV: production ENVIRONMENT: production JETSTREAM_POSTGRES_DBURI: postgres://postgres:postgres@postgres:5432/postgres EXAMPLE_USER_OVERRIDE: true - JETSTREAM_SESSION_SECRET: '6ba0bf00ee0a0b0a65baa9f04b264972' + JETSTREAM_SESSION_SECRET: '123456' JETSTREAM_CLIENT_URL: http://localhost:3333/app JETSTREAM_SERVER_DOMAIN: localhost:3333 JETSTREAM_SERVER_URL: http://localhost:3333 ports: - '3333:3333' - - '9229:9229' links: - db - command: node dist/apps/api/main.js --inspect db: image: postgres:16.1-alpine restart: always