Files
openlan/docker/docker-compose.yml
Daniel Ding a5e135c624
Some checks failed
Coverage CI / build (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
Ubuntu CI / build (push) Has been cancelled
fea: docker: enable frr for bgp.
2025-08-08 15:46:57 +08:00

44 lines
1.2 KiB
YAML

version: "2.3"
services:
ipsec:
restart: always
image: "luscis/openlan:latest.x86_64"
privileged: true
network_mode: host
entrypoint: ["/var/openlan/script/ipsec.sh"]
volumes:
- /opt/openlan/etc/ipsec.d:/etc/ipsec.d
- /opt/openlan/run/pluto:/run/pluto
frr:
restart: always
image: "quay.io/frrouting/frr:10.2.1"
network_mode: host
privileged: true
entrypoint: ["/usr/lib/frr/docker-start"]
volumes:
- /opt/openlan/etc/frr:/etc/frr
switch:
restart: always
image: "luscis/openlan:latest.x86_64"
privileged: true
network_mode: host
entrypoint: ["/var/openlan/script/switch.sh", "start"]
volumes:
- /opt/openlan/etc/openlan:/etc/openlan
- /opt/openlan/etc/ipsec.d:/etc/ipsec.d
- /opt/openlan/run/pluto:/run/pluto
depends_on:
- ipsec
proxy:
restart: always
image: "luscis/openlan:latest.x86_64"
network_mode: host
entrypoint: ["/usr/bin/openlan-proxy", "-conf", "/etc/openlan/proxy.json", "-log:file", "/dev/null"]
volumes:
- /opt/openlan/etc/openlan:/etc/openlan
depends_on:
- switch
# exporter:
# restart: always
# image: "prom/node-exporter:v1.7.0"
# network_mode: host