fix: update environment variable handling in Docker Compose files and improve contributing documentation

This commit is contained in:
Thibault Pouch
2026-03-19 21:27:56 +01:00
parent 3714200dc1
commit 5268e7618b
6 changed files with 24 additions and 7 deletions

View File

@@ -18,9 +18,9 @@ services:
build: ./nest-backend
restart: unless-stopped
ports:
- "3000:3000"
- "${API_HOST_PORT:-3001}:3000"
env_file:
- ./nest-backend/.env
- ./.env
environment:
DATABASE_URL: postgresql://nest_user:nest_password@db:5432/nest_db
depends_on: