Files
Proxmox-AIS-Server/compose.yaml
T
BartelLuis 06c3474636
CI / javascript-check (push) Successful in 51s
CI / container-policy (push) Successful in 2s
CI / container-verify (push) Canceled after 0s
CI / container-publish (push) Canceled after 0s
CI / python-tests (push) Canceled after 6m59s
feat: add Proxmox provisioning service with CI and deployment tooling
2026-09-14 20:09:12 +02:00

30 lines
774 B
YAML

services:
provisioner:
image: ${PROVISIONER_IMAGE:?PROVISIONER_IMAGE in .env auf das Image aus der GitHub Container Registry setzen}
restart: unless-stopped
init: true
ports:
- "127.0.0.1:8080:8080"
environment:
DATA_DIR: /var/lib/proxmox-ais
MASTER_KEY_FILE: /run/secrets/master.key
PUBLIC_URL: ${PUBLIC_URL:-https://provision.example.net}
SECURE_COOKIES: "true"
MAINTENANCE: ${MAINTENANCE:-false}
volumes:
- ais-data:/var/lib/proxmox-ais
- ais-keys:/run/secrets:ro
read_only: true
tmpfs:
- /tmp:rw,noexec,nosuid,size=64m
cap_drop:
- ALL
security_opt:
- no-new-privileges:true
volumes:
ais-data:
name: proxmox-ais-data
ais-keys:
name: proxmox-ais-keys