forked from ShoyuVanilla/FoundryVTT-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-https.yml
More file actions
36 lines (33 loc) · 895 Bytes
/
Copy pathdocker-compose-https.yml
File metadata and controls
36 lines (33 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: '3'
services:
foundryvtt:
container_name: foundryvtt
image: node:14.15.5-alpine3.13
restart: always
command: ["node", "/foundryvtt/resources/app/main.js", "--headless"]
volumes:
- ./foundryvtt:/foundryvtt
- ./foundrydata:/root/.local/share/FoundryVTT
tinyfilemanager:
container_name: tinyfilemanager
image: shoyuvanilla/tinyfilemanager-forfvtt
restart: always
volumes:
- ./:/app/tinyfilemanager/data
- ./tinyfilemanager-config.php:/app/tinyfilemanager/config.php
https-portal:
container_name: https-portal
image: steveltn/https-portal:1.17.5
ports:
- 80:80
- 443:443
restart: always
environment:
STAGE: production
PROXY_READ_TIMEOUT: 3600
CLIENT_MAX_BODY_SIZE: 10G
WEBSOCKET: 'true'
volumes:
- ssl-certs:/var/lib/https-portal
volumes:
ssl-certs: {}