Files
BartelLuis 9c528c6eca
CI / container-policy (push) Successful in 8s
CI / javascript-check (push) Successful in 18s
CI / python-tests (push) Failing after 4m44s
CI / container-verify (push) Skipped
CI / container-publish (push) Skipped
ci: migrate workflows to Gitea Actions
2026-09-14 20:23:20 +02:00

30 lines
773 B
YAML

services:
provisioner:
image: ${PROVISIONER_IMAGE:?PROVISIONER_IMAGE in .env auf das Image aus der Gitea 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