Archived
1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
the-nexus/docker-compose.yml

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"