Compare commits
2 Commits
26b3f8b258
...
4aecea3c86
Author | SHA1 | Date |
---|---|---|
Rin | 4aecea3c86 | |
Rin | 651d83a3d8 |
|
@ -12,7 +12,7 @@ volumes:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
foundry:
|
foundry:
|
||||||
image: felddy/foundryvtt:10.291
|
image: felddy/foundryvtt:11
|
||||||
hostname: foundry.apheliongaming.com
|
hostname: foundry.apheliongaming.com
|
||||||
volumes:
|
volumes:
|
||||||
- type: volume
|
- type: volume
|
||||||
|
@ -23,6 +23,7 @@ services:
|
||||||
- FOUNDRY_HOSTNAME="foundry.apheliongaming.com"
|
- FOUNDRY_HOSTNAME="foundry.apheliongaming.com"
|
||||||
- FOUNDRY_PROXY_SSL=true
|
- FOUNDRY_PROXY_SSL=true
|
||||||
- FOUNDRY_MINIFY_STATIC_FILES=true
|
- FOUNDRY_MINIFY_STATIC_FILES=true
|
||||||
|
- FOUNDRY_VERSION=10.312
|
||||||
ports:
|
ports:
|
||||||
- target: 30000
|
- target: 30000
|
||||||
published: 30000
|
published: 30000
|
||||||
|
@ -30,4 +31,3 @@ services:
|
||||||
secrets:
|
secrets:
|
||||||
- source: config_json
|
- source: config_json
|
||||||
target: config.json
|
target: config.json
|
||||||
restart: always
|
|
||||||
|
|
|
@ -1,14 +1,21 @@
|
||||||
---
|
---
|
||||||
version: "3.7"
|
version: "3.7"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
database:
|
||||||
|
|
||||||
|
uploads:
|
||||||
|
|
||||||
|
logs:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
chibisafe:
|
chibisafe:
|
||||||
image: chibisafe/chibisafe:latest
|
image: chibisafe/chibisafe:latest
|
||||||
container_name: chibisafe
|
container_name: chibisafe
|
||||||
volumes:
|
volumes:
|
||||||
- ./database:/home/node/chibisafe/database:rw
|
- database:/home/node/chibisafe/database:rw
|
||||||
- ./uploads:/home/node/chibisafe/uploads:rw
|
- uploads:/home/node/chibisafe/uploads:rw
|
||||||
- ./logs:/home/node/chibisafe/logs:rw
|
- logs:/home/node/chibisafe/logs:rw
|
||||||
ports:
|
ports:
|
||||||
- 24424:24424
|
- 24424:8000
|
||||||
restart: always
|
restart: always
|
||||||
|
|
Loading…
Reference in New Issue