Nathan Woodburn c88e6b90ce
All checks were successful
Build Docker / Build Docker (push) Successful in 26s
feat: Add github link and fix a small crash with reserved domains
2023-12-11 21:37:58 +11:00
2023-12-11 15:28:20 +11:00
2023-12-11 15:28:20 +11:00
2023-12-11 20:53:26 +11:00
2023-12-11 15:29:28 +11:00
2023-12-11 13:16:19 +11:00
2023-12-11 20:53:26 +11:00
2023-12-11 15:28:20 +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
      EMAIL_FROM: noreply@hnshosting.au
      EMAIL_PASSWORD: supersecretemailpassword
      EMAIL_HOST: mail.woodburn.au
      EMAIL_PORT: 587
      EMAIL_USE_TLS: True
      HSD_API_KEY: supersecretkey
      HSD_IP: 10.2.1.15 # Set to your HSD IP
      HSD_PORT: 12037 # Only change if using a custom port (or regtest)
      HSD_WALLET_PORT: 12039 # Only change if using a custom port (or regtest)
      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:
Description
No description provided
Readme 1.3 MiB
Languages
HTML 63%
Python 34.3%
JavaScript 1.5%
CSS 0.8%
Dockerfile 0.4%