Sign inSign up

andref/domain-tool

By andref

Updated 10 months ago

Domain Tool is a DNS Fetch and analyse information regarding one or more domains.

Image
Networking
0

751

andref/domain-tool repository overview

Domain Tool

Summary of the tool work

  • Detect domain's expire date.
  • Watch DMARC SPF Changes and monitor them.

Enviroment Variables

  • DB_HOST
  • DB_USER
  • DB_PASSWORD
  • DB_NAME
  • GIN_MODE=release # for production

Example method of running the Application:

This application requires postgres for the database see the github repo for the scheme to be used.

Docker Compose

services:
  domain-tool:
    image: "andref/domain-tool"
    environment:
      DB_HOST: postgres
      DB_USER: postgres
      DB_PASSWORD: enlabium-invictus
      DB_NAME: domaintool
    ports:
      - "8080:8080"
    networks:
      - domaintool
  postgres:
    image: "postgres:latest"
    environment:
      POSTGRES_PASSWORD: enlabium-invictus
    volumes:
      - type: bind
        source: ./docker-entrypoint-initdb.d
        target: /docker-entrypoint-initdb.d/
    networks:
      - domaintool

volumes:
  docker-entrypoint-initdb.d:

networks:
  domaintool:

Note: Directory /docker-entrypoint-initdb.d/ holds the Database create and Tables create file.

Tag summary

Content type

Image

Digest

sha256:091d8836c

Size

90 MB

Last updated

10 months ago

docker pull andref/domain-tool