Host and manage gatherings effortlessly with a privacy-first, federated platform designed to keep your data secure. Unlike traditional event platforms, there are no accounts required. You simply generate a password-protected link to edit your event and share a public link with your guests. Your data remains yours, with features built specifically to protect user privacy and minimize digital footprints.
Key Benefits:
services:
app:
# Builds directly from the official repository to ensure the latest version
build: https://github.com/lowprofile/gathio.git
container_name: gathio_app
restart: unless-stopped
ports:
- "3000:3000"
environment:
- MONGODB_URI=mongodb://mongo:27017/gathio
- BASE_URL=${BASE_URL}
- SECRET=${SECRET}
- MAILGUN_API_KEY=${MAILGUN_API_KEY}
- MAILGUN_DOMAIN=${MAILGUN_DOMAIN}
- EMAIL_FROM=${EMAIL_FROM}
volumes:
- ./data/uploads:/usr/src/app/public/uploads
depends_on:
- mongo
mongo:
image: mongo:4.4
container_name: gathio_mongo
restart: unless-stopped
volumes:
- ./data/db:/data/dbBASE_URL=http://localhost:3000
SECRET=change_this_to_a_secure_random_string
# Mailgun Configuration (Required for sending emails)
MAILGUN_API_KEY=your_mailgun_api_key
MAILGUN_DOMAIN=your_mailgun_domain
EMAIL_FROM=Gathio <noreply@yourdomain.com>Auto-fetched about 24 hours ago
Auto-fetched about 24 hours ago