23 lines
396 B
YAML
Raw Normal View History

name: code-containers
services:
server:
build: ..
env_file: ../.env
ports:
- 3000:3000
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
proxy:
build: ../proxy
env_file: ../.env
ports:
- 80:80
network_mode: host
2025-01-14 12:00:54 -05:00
frontend:
image: nginx:alpine
ports:
- 5173:80
volumes:
- ../frontend/dist:/usr/share/nginx/html