This commit is contained in:
2026-06-09 09:36:48 +03:00
parent 8247b7116f
commit f0fda693d8
49 changed files with 5503 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
backend:
build: ./backend
ports:
- "${PORT:-8080}:8080"
env_file: .env
volumes:
- ./data:/app/data
restart: unless-stopped
frontend:
build:
context: ./frontend
args:
VITE_API_URL: ""
ports:
- "3000:80"
depends_on:
- backend
restart: unless-stopped