Bitpoll

A web application for scheduling meetings and general polling.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  bitpoll:
    build:
      dockerfile: Dockerfile
      context: .
    ports:
     - 3008:3008
     - 3009:3009
    volumes:
     - ./run/static:/opt/static
     - ./run/config:/opt/config
     - ./run/log/:/opt/log
  web:
    image: nginx:1.23
    volumes:
     - ./docker_files/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
     - ./run/static:/opt/static
    ports:
     - "80:80"
    restart: unless-stopped

Resources

Website: https://bitpoll.de/

GitHub: https://github.com/fsinfuhh/Bitpoll

Docker Hub: https://github.com/fsinfuhh/Bitpoll/pkgs/container/bitpoll

Configuration: https://github.com/fsinfuhh/Bitpoll#using-docker