Rallly

Create polls to vote on dates and times (alternative to Doodle).

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  rallly_db:
    image: postgres:14.2
    restart: always
    volumes:
      - ./db-data:/var/lib/postgresql/data
    environment:
      - POSTGRES_PASSWORD=postgres
      - POSTGRES_DB=db
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres"]
      interval: 5s
      timeout: 5s
      retries: 5
 
  rallly:
    image: lukevella/rallly:latest
    restart: always
    depends_on:
      - rallly_db
    ports:
      - 3000:3000
    environment:
      - DATABASE_URL=postgres://postgres:postgres@rallly_db/db
    env_file:
      - config.env

Resources

Website: https://rallly.co/

GitHub: https://github.com/lukevella/rallly

Docker Hub: https://hub.docker.com/r/lukevella/rallly

Configuration: https://support.rallly.co/self-hosting/docker-compose