Files
archicratie-edition/docker-compose.yml
archicratia 60d88939b0
All checks were successful
CI / build-and-anchors (push) Successful in 1m25s
SMOKE / smoke (push) Successful in 11s
CI / build-and-anchors (pull_request) Successful in 1m20s
Seed from NAS prod snapshot 20260130-190531
2026-01-31 10:51:38 +00:00

31 lines
788 B
YAML

services:
web_blue:
build:
context: .
dockerfile: Dockerfile
network: host
args:
PUBLIC_GITEA_BASE: ${PUBLIC_GITEA_BASE}
PUBLIC_GITEA_OWNER: ${PUBLIC_GITEA_OWNER}
PUBLIC_GITEA_REPO: ${PUBLIC_GITEA_REPO}
image: archicratie-web:blue
container_name: archicratie-web-blue
ports:
- "127.0.0.1:8081:80"
restart: unless-stopped
web_green:
build:
context: .
dockerfile: Dockerfile
network: host
args:
PUBLIC_GITEA_BASE: ${PUBLIC_GITEA_BASE}
PUBLIC_GITEA_OWNER: ${PUBLIC_GITEA_OWNER}
PUBLIC_GITEA_REPO: ${PUBLIC_GITEA_REPO}
image: archicratie-web:green
container_name: archicratie-web-green
ports:
- "127.0.0.1:8082:80"
restart: unless-stopped