1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-13 08:43:16 +00:00
Files
xslt-lab/docker-compose.local.yml
2025-11-15 22:26:25 +01:00

19 lines
336 B
YAML

version: '3.8'
services:
backend:
build: ./backend
environment:
VITE_GO_PRO: "false"
XSLT_TRACE_DEBUG: "true"
ports:
- "8000:8000"
frontend:
build:
context: ./frontend
environment:
VITE_BACKEND_URL: http://localhost:8000
ports:
- "3000:80"
depends_on:
- backend