mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-04 04:22:57 +00:00
small fix, don't worry about it
This commit is contained in:
@@ -4,13 +4,13 @@ services:
|
||||
context: ./backend
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "${BACKEND_PORT:-8080}:${BACKEND_PORT:-8080}"
|
||||
- "${BACKEND_HOST_PORT:-9000}:${BACKEND_PORT:-8080}"
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
- APP_VERSION=${APP_VERSION:-1.0.0}
|
||||
- BACKEND_PORT=${BACKEND_PORT:-8080}
|
||||
- FRONTEND_PORT=${FRONTEND_PORT:-8080}
|
||||
- FRONTEND_PORT=${FRONTEND_PORT:-3000}
|
||||
- VITE_DEMO_MODE=true
|
||||
volumes:
|
||||
- ./data:/data
|
||||
@@ -30,15 +30,13 @@ services:
|
||||
dockerfile: ./frontend/Dockerfile
|
||||
args:
|
||||
- VITE_DEMO_MODE=true
|
||||
- VITE_API_URL=${VITE_API_URL:-http://localhost:8080}
|
||||
- VITE_OAUTH_SERVICE_URL=${VITE_OAUTH_SERVICE_URL:-https://oauth.trackeep.org}
|
||||
- VITE_API_URL=${VITE_API_URL:-http://localhost:${BACKEND_HOST_PORT:-9000}}
|
||||
ports:
|
||||
- "${FRONTEND_PORT:-3000}:${FRONTEND_PORT:-3000}"
|
||||
- "${FRONTEND_HOST_PORT:-3900}:${FRONTEND_PORT:-3000}"
|
||||
environment:
|
||||
- VITE_APP_VERSION=${APP_VERSION:-1.0.0}
|
||||
- VITE_DEMO_MODE=true
|
||||
- VITE_API_URL=${VITE_API_URL:-http://localhost:8080}
|
||||
- VITE_OAUTH_SERVICE_URL=${VITE_OAUTH_SERVICE_URL:-https://oauth.trackeep.org}
|
||||
- VITE_API_URL=${VITE_API_URL:-http://localhost:${BACKEND_HOST_PORT:-9000}}
|
||||
- FRONTEND_PORT=${FRONTEND_PORT:-3000}
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock # Docker socket for updates
|
||||
|
||||
Reference in New Issue
Block a user