Pull Docker Compose configs for discord-bots VM, foundry-lxc LXC, and termix. Add pihole and orbital-sync compose files for ubuntu-manticore. Back up LXC 223 (foundry) Proxmox config. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
529 B
YAML
21 lines
529 B
YAML
services:
|
|
foundry:
|
|
image: felddy/foundryvtt:release
|
|
restart: unless-stopped
|
|
hostname: foundry
|
|
security_opt:
|
|
- apparmor=unconfined
|
|
volumes:
|
|
- type: bind
|
|
source: ./data
|
|
target: /data
|
|
environment:
|
|
- FOUNDRY_PASSWORD=${FOUNDRY_PASSWORD}
|
|
- FOUNDRY_USERNAME=${FOUNDRY_USERNAME}
|
|
- FOUNDRY_ADMIN_KEY=${FOUNDRY_ADMIN_KEY}
|
|
- CONTAINER_PRESERVE_CONFIG=true
|
|
- FOUNDRY_VERSION=13.351
|
|
- FOUNDRY_MINIFY_STATIC_FILES=true
|
|
ports:
|
|
- "30000:30000"
|