summaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: f799a9ed96a4af468ec89b960bb7e6d8b6bd2cff (plain)
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