-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (33 loc) · 1.05 KB
/
docker-compose.yml
File metadata and controls
35 lines (33 loc) · 1.05 KB
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
version: '3'
services:
## Foundry VTT node service.
foundry_node:
build:
context: ./
dockerfile: Dockerfile-foundrynode
## Update the version number below, as needed.
image: foundrynode:0.2.5
container_name: foundry_node
restart: always
ports:
- "30000:30000"
volumes:
## Sync the app directory so that updates aren't lost.
- ./app:/app
## Sync custom directories to a different location, so that
## they're easier to modify.
- ./public/worlds:/app/public/worlds
- ./public/modules:/app/public/modules
## Add additional synced directories as desired.
# - ./public/systems:/app/public/systems
## External file browser service. Uncomment if you would like
## an additional file upload/preview service.
# foundry_filebrowser:
# image: filebrowser/filebrowser
# container_name: foundry_filebrowser
# ports:
# - "8080:80"
# volumes:
# - ./public:/srv
# - ./config/filebrowser/config.json:/config/json
# - ./data/database.db:/database.db