bgpkit-broker 0.12.0

A library and command-line to provide indexing and searching functionalities for public BGP data archive files over time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
  bgpkit-broker:
    image: bgpkit/bgpkit-broker:latest
    ports:
      - "40064:40064"
    volumes:
      - ./data:/bgpkit-broker
    environment:
      # Empty values keep the built-in SQLite path. Set one runtime variable to
      # select a pre-initialized PostgreSQL catalog or custom SQLite file; do not
      # commit PostgreSQL connection values.
      BGPKIT_BROKER_POSTGRES_URL: ${BGPKIT_BROKER_POSTGRES_URL:-}
      BGPKIT_BROKER_SQLITE_PATH: ${BGPKIT_BROKER_SQLITE_PATH:-}
    restart: unless-stopped