17 lines
356 B
YAML
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"
|