Compare commits

..

2 Commits

Author SHA1 Message Date
241078316c Update Docker port mapping to match both to env var
All checks were successful
Deploy to Homelab / deploy (push) Successful in 8s
2026-03-04 09:44:38 -08:00
85b6f8df2c Export additional variables 2026-03-04 09:44:28 -08:00
2 changed files with 3 additions and 1 deletions

View File

@@ -39,6 +39,8 @@ jobs:
export TRUST_PROXY=true
export COOKIE_SECURE=true
export JWT_SECRET=${{ secrets.JWT_SECRET }}
export PORT=${{ vars.PORT }}
export BASE_URL=${{ vars.BASE_URL }}
docker compose -f docker-compose.yml down
docker compose -f docker-compose.yml up -d --build
EOF

View File

@@ -15,7 +15,7 @@ services:
nanodrop:
build: .
ports:
- "${PORT:-3000}:3000"
- "${PORT:-3000}:${PORT:-3000}"
environment: { <<: *env }
volumes:
- nanodrop-data:/app/data