fix: update Nginx volume path to use GITHUB_WORKSPACE variable
Some checks failed
Build and Deploy Thoughts / build-and-deploy-local (push) Failing after 5s

This commit is contained in:
2025-09-09 01:40:26 +02:00
parent 36e12d1d96
commit 327e671571

View File

@@ -52,7 +52,7 @@ services:
image: nginx:stable-alpine image: nginx:stable-alpine
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ${GITEA_WORKSPACE}/nginx/nginx.conf:/etc/nginx/conf.d/default.conf - ${GITHUB_WORKSPACE}/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on: depends_on:
- frontend - frontend
- backend - backend