From a6362b6435f6235521a1eaf419492b9062d35004 Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Sun, 12 Oct 2025 16:16:37 +0200 Subject: [PATCH] feat: add authentication configuration to docker-compose.yml --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index f5c3061..3e44cca 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,6 +13,10 @@ services: DB_USER: peakskills_user DB_PASSWORD: peakskills_password NEXT_PUBLIC_API_URL: "" + # Auth.js configuration + AUTH_SECRET: "FvhDat3sJK5TI1L4fcugCGFmLsO1BCi+mwSYeLkl8JA=" + AUTH_TRUST_HOST: "true" + AUTH_URL: "http://localhost:3000" depends_on: postgres: condition: service_healthy