15 lines
265 B
YAML
15 lines
265 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
nexus-main:
|
|
build: .
|
|
container_name: nexus-main
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8765:8765"
|
|
nexus-staging:
|
|
build: .
|
|
container_name: nexus-staging
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8766:8765" |