2026-03-24 01:30:28 +00:00
|
|
|
version: "3.9"
|
|
|
|
|
|
|
|
|
|
services:
|
2026-04-13 00:26:55 +00:00
|
|
|
nexus-main:
|
2026-03-24 01:30:28 +00:00
|
|
|
build: .
|
2026-04-13 00:26:55 +00:00
|
|
|
container_name: nexus-main
|
2026-03-24 01:30:28 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
2026-03-26 16:43:49 +00:00
|
|
|
- "8765:8765"
|
2026-04-13 21:16:49 -04:00
|
|
|
|
2026-04-13 00:26:55 +00:00
|
|
|
nexus-staging:
|
|
|
|
|
build: .
|
|
|
|
|
container_name: nexus-staging
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
2026-04-13 21:16:49 -04:00
|
|
|
- "8766:8765"
|
|
|
|
|
|
|
|
|
|
nexus-backend:
|
|
|
|
|
build: .
|
|
|
|
|
container_name: nexus-backend
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
expose:
|
|
|
|
|
- "8765"
|
|
|
|
|
|
|
|
|
|
nexus-preview:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: Dockerfile.preview
|
|
|
|
|
container_name: nexus-preview
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
|
|
|
|
depends_on:
|
|
|
|
|
- nexus-backend
|