32 lines
728 B
YAML
32 lines
728 B
YAML
services:
|
|
bird-rpki-client:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
BIRD_VERSION: "3.2.1"
|
|
container_name: bird-rpki-client
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
environment:
|
|
BIRD_CONFIG_PATH: "/config/bird.conf"
|
|
|
|
RPKI_HOST: "host.docker.internal"
|
|
RPKI_PORT: "323"
|
|
|
|
OBSERVE_PROTO: "rpki_tcp"
|
|
OBSERVE_INTERVAL: "30"
|
|
|
|
OBSERVE_ASPA_TABLE: "rtr_aspa"
|
|
OBSERVE_ROA4_TABLE: "rtr_roa_v4"
|
|
OBSERVE_ROA6_TABLE: "rtr_roa_v6"
|
|
|
|
OBSERVE_ASPA_COUNT: "3"
|
|
OBSERVE_ROA4_COUNT: "3"
|
|
OBSERVE_ROA6_COUNT: "3"
|
|
|
|
SHOW_ASPA: "1"
|
|
SHOW_ROA4: "1"
|
|
SHOW_ROA6: "1"
|
|
volumes:
|
|
- ./bird.conf:/config/bird.conf:ro |