From 20c8d351115f3a940d1c57d96a201895b1229bf7 Mon Sep 17 00:00:00 2001 From: Kage1 <2062390+Kage1@users.noreply.github.com> Date: Thu, 13 Jun 2024 09:07:19 -0500 Subject: [PATCH] docker-compose.yml Docker Compose file for running the netbox-zabbix-sync --- docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..488914c --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +# example docker compose file for netbox to zabbix sync +# + +services: + nbx-zbx-sync: + container_name: netbox-zabbix-sync + restart: no + image: ghcr.io/thenetworkguy/netbox-zabbix-sync:main + volumes: + - /etc/netbox-zabbix-sync/config.py:/opt/netbox-zabbix/config.py + environment: + - ZABBIX_HOST=http://yourawesomezabbixserver.local:8080 + - ZABBIX_TOKEN= + - NETBOX_HOST=http://yourawesomenetboxserver.local + - NETBOX_TOKEN= \ No newline at end of file