76b9f64141
- 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>
18 lines
467 B
YAML
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:
|