Go to file
Nathan Woodburn 8a9f35e044
All checks were successful
Build Docker / Build Docker (push) Successful in 23s
fix: Remove hvac module
2023-12-11 15:33:14 +11:00
.gitea/workflows feat: Add initial code 2023-12-11 15:28:20 +11:00
templates feat: Add initial code 2023-12-11 15:28:20 +11:00
.gitignore feat: Add initial code 2023-12-11 15:28:20 +11:00
account.py feat: Add initial code 2023-12-11 15:28:20 +11:00
Dockerfile feat: Add dockerfile 2023-12-11 15:29:28 +11:00
LICENSE.md Initial commit 2023-12-11 13:16:19 +11:00
main.py feat: Add initial code 2023-12-11 15:28:20 +11:00
README.md feat: Add initial code 2023-12-11 15:28:20 +11:00
requirements.txt feat: Add initial code 2023-12-11 15:28:20 +11:00
server.py fix: Remove hvac module 2023-12-11 15:33:14 +11:00

HNS Alert

Docker compose

version: '3'
services:
  app:
    image: git.woodburn.au/nathanwoodburn/hnsalert:latest # for production
    # image: git.woodburn.au/nathanwoodburn/hnsalert:dev # for development
    ports:
      - "61495:5000"
    depends_on:
      - db
    environment:
      DB_HOST: db
      DB_USER: db_user
      DB_PASSWORD: db_password
      DB_NAME: alert_db
      WORKERS: 2 # number of workers to run (should be 2 * number of cores)

  db:
    image: linuxserver/mariadb:latest
    environment:
      MYSQL_ROOT_PASSWORD: your-root-password
      MYSQL_DATABASE: alert_db
      MYSQL_USER: db_user
      MYSQL_PASSWORD: db_password
    volumes:
      - db_data:/var/lib/mysql
volumes:
  db_data: