Files
the-nexus/docker-compose.yml
Timmy Time 1b5e9dbce0
Some checks failed
Deploy Nexus / deploy (push) Has been cancelled
feat: add local volume mounts for live reloading (#153)
2026-03-24 03:59:34 +00:00

25 lines
438 B
YAML

version: "3.9"
services:
nexus-main:
build: .
container_name: nexus-main
restart: unless-stopped
ports:
- "4200:80"
volumes:
- .:/usr/share/nginx/html:ro
labels:
- "deployment=main"
nexus-staging:
build: .
container_name: nexus-staging
restart: unless-stopped
ports:
- "4201:80"
volumes:
- .:/usr/share/nginx/html:ro
labels:
- "deployment=staging"