Files
Provisioning/docker-compose.yml
josh 76b9f64141
build-and-push / test (push) Successful in 36s
build-and-push / build-and-push (push) Successful in 1m8s
Remove keys volume mount and add install script
- Remove /etc/provisioning/keys mount (ephemeral keys are in-memory now)
- Remove /etc/provisioning VOLUME from Dockerfile
- Add deploy/install.sh that creates config files before docker compose up,
  preventing Docker from creating directories in place of missing bind mounts
- Update README with install script usage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-09 20:48:35 -04:00

18 lines
467 B
YAML

services:
provisioning:
image: gitea.thewrightserver.net/josh/provisioning:latest
container_name: provisioning
restart: unless-stopped
network_mode: host
volumes:
- ./provisioning.yaml:/etc/provisioning/provisioning.yaml:ro
- ./server-types.yaml:/etc/provisioning/server-types.yaml:ro
- data:/data
command: ["-config", "/etc/provisioning/provisioning.yaml"]
cap_add:
- NET_ADMIN
- NET_RAW
volumes:
data: