blob: 5a8a0d93f503fc877a60920fce0ba889fc4b697f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 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
|