Add docker

This commit is contained in:
Evgenii Saenko
2025-12-17 11:51:25 +03:00
parent a01b46182e
commit 4f6700e0e2
110 changed files with 8838 additions and 181 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
web:
build:
context: .
dockerfile: Dockerfile
args:
# Override at build time: VITE_API_URL=https://api.example.com docker compose up --build
VITE_API_URL: ${VITE_API_URL:-http://localhost:8080}
ports:
- '8000:80'
restart: unless-stopped