Nathan Woodburn 64547ef6d4
All checks were successful
Build Docker / Build Docker (push) Successful in 25s
feat: Add initial domain management
2023-12-11 18:00:58 +11:00
2023-12-11 15:28:20 +11:00
2023-12-11 15:28:20 +11:00
2023-12-11 18:00:58 +11:00
2023-12-11 15:29:28 +11:00
2023-12-11 18:00:58 +11:00
2023-12-11 13:16:19 +11:00
2023-12-11 18:00:58 +11:00
2023-12-11 15:28:20 +11:00
2023-12-11 15:28:20 +11:00
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:
Description
No description provided
Readme 1.3 MiB
Languages
HTML 63%
Python 34.3%
JavaScript 1.5%
CSS 0.8%
Dockerfile 0.4%