Gathio

Self-destructing, shareable, no-registration event pages.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
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
        restart: always

Resources

Website: https://gath.io/

GitHub: https://github.com/lowercasename/gathio

Docker Hub: https://github.com/lowercasename/gathio/pkgs/container/gathio

Configuration: https://docs.gath.io/running-gathio/installation/