1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-18 19:43:16 +00:00
Files
xslt-lab/docker-compose.local.yml
T

18 lines
305 B
YAML

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