forked from lowercasename/gathio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
24 lines (23 loc) · 841 Bytes
/
docker-compose.yml
File metadata and controls
24 lines (23 loc) · 841 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
volumes:
mongodb_data_db:
services:
gathio:
container_name: gathio-app
image: ghcr.io/lowercasename/gathio:latest
links:
- mongo
ports:
- 3000:3000
volumes:
# The path to Gathio's config folder - change to match your system
- ./gathio-docker/config:/app/config
# The path to Gathio's static, public pages including instance description
# and privacy policy - change to match your system
- ./gathio-docker/static:/app/static
# The path to Gathio's user-uploaded event images folder - change to match your system
- ./gathio-docker/images:/app/public/events
mongo:
container_name: gathio-db
image: mongo:latest
volumes:
- mongodb_data_db:/data/db