25 lines
461 B
YAML
25 lines
461 B
YAML
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"
|
|
|
|
nexus-preview:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.preview
|
|
container_name: nexus-preview
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- nexus-main |