今時は NewRelic や Datadog などクラウド上で簡単にシステム監視を始めることができますが、Nagios や Zabbix などオンプレ時代からある監視ツールを久しぶりに触りたくなりました。ということで、Zabbix を Docker を試してみました。
Docker Compose を用意
git clone https://github.com/zabbixabbix-docker.git
cd zabbix-docker
Docker Compose で Zabbix を起動
docker compose \
-f docker-compose_v3_ubuntu_mysql_latest.yaml \
up -d
Zabbix ログイン後の画面

Zabbix を後片付け
docker compose \
-f docker-compose_v3_ubuntu_mysql_latest.yaml \
down --volumes
(2024/12/7 追記)バージョンアップ
docker pull zabbix/zabbix-web-nginx-mysql:ubuntu-7.0-latest
docker pull zabbix/zabbix-server-mysql:ubuntu-7.0-latest
docker compose -f docker-compose_v3_ubuntu_mysql_latest.yaml down
docker compose -f docker-compose_v3_ubuntu_mysql_latest.yaml up -d

参考
https://www.zabbix.com/documentation/6.0/jp/manual/installation/containers
タグ: Docker, Zabbix