feature/04-workout-modification #2

Merged
sphinxen merged 14 commits from feature/04-workout-modification into main 2026-03-02 09:25:33 +01:00
2 changed files with 28 additions and 0 deletions
Showing only changes of commit 7694ca6313 - Show all commits
+28
View File
@@ -0,0 +1,28 @@
version: "3.8"
services:
frontend:
container_name: staging-gravl-PLACEHOLDER-frontend
networks:
- staging-network
environment:
- VITE_API_URL=http://localhost:3001
backend:
container_name: staging-gravl-PLACEHOLDER-backend
networks:
- staging-network
environment:
- NODE_ENV=staging
- PORT=3001
- CORS_ORIGIN=http://localhost:5173
db:
container_name: staging-gravl-PLACEHOLDER-db
image: postgres:15-alpine
networks:
- staging-network
networks:
staging-network:
driver: bridge
View File