Fix up restarts and safe ports

main
Rin 2024-02-15 17:14:27 +11:00
parent 6e32d90478
commit 457f83de52
3 changed files with 18 additions and 10 deletions

View File

@ -12,8 +12,9 @@ volumes:
services:
foundry:
image: felddy/foundryvtt:10.291
image: felddy/foundryvtt:11
hostname: foundry.apheliongaming.com
restart: always
volumes:
- type: volume
source: foundryvtt
@ -23,6 +24,7 @@ services:
- FOUNDRY_HOSTNAME="foundry.apheliongaming.com"
- FOUNDRY_PROXY_SSL=true
- FOUNDRY_MINIFY_STATIC_FILES=true
- FOUNDRY_VERSION=10.312
ports:
- target: 30000
published: 30000
@ -30,4 +32,3 @@ services:
secrets:
- source: config_json
target: config.json
restart: unless-stopped

View File

@ -10,12 +10,12 @@ volumes:
services:
svn:
image: elleflorio/svn-server
container_name: rpg-store-svn
restart: always
ports:
- 3690:3690
container_name: rpg-store-svn
working_dir: /home/svn
volumes:
- data:/home/svn
- svn-meta:/etc/subversion
- admin:/opt/svnadmin/data
restart: unless-stopped

View File

@ -1,14 +1,21 @@
---
version: "3.7"
volumes:
database:
uploads:
logs:
services:
chibisafe:
image: chibisafe/chibisafe:latest
container_name: chibisafe
volumes:
- ./database:/home/node/chibisafe/database:rw
- ./uploads:/home/node/chibisafe/uploads:rw
- ./logs:/home/node/chibisafe/logs:rw
ports:
- 24424:24424
restart: always
volumes:
- database:/home/node/chibisafe/database:rw
- uploads:/home/node/chibisafe/uploads:rw
- logs:/home/node/chibisafe/logs:rw
ports:
- 24424:8000