Files
house-elo-ranking/docker-compose.yaml
2026-03-06 12:53:06 +00:00

17 lines
356 B
YAML

services:
elo-backend:
build: ./backend
container_name: elo-backend
restart: unless-stopped
env_file: .env
network_mode: host
elo-frontend:
build: ./frontend
container_name: elo-frontend
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- "${FRONTEND_PORT:-8888}:80"