#ident "@(#)$Format:LocalFoodAI_lanfr144:docker-compose.yml:%an:%ae:%ad:%cn:%ce:%cd:%H:%D:%N$" version: '3.5' services: zabbix-server: image: zabbix/zabbix-server-mysql:ubuntu-7.0-latest ports: - "10051:10051" environment: - DB_SERVER_HOST=192.168.130.170 # Use the unified MySQL DB - MYSQL_USER=zabbix - MYSQL_PASSWORD=${MYSQL_ZABBIX_PASSWORD} - ZBX_SNMPTRAPPER=1 restart: always logging: driver: "json-file" options: max-size: "50m" max-file: "3" zabbix-web: image: zabbix/zabbix-web-nginx-mysql:ubuntu-7.0-latest ports: - "8080:8080" - "8443:8443" environment: - DB_SERVER_HOST=192.168.130.170 - MYSQL_USER=zabbix - MYSQL_PASSWORD=${MYSQL_ZABBIX_PASSWORD} - ZBX_SERVER_HOST=zabbix-server - PHP_TZ=Europe/Paris depends_on: - zabbix-server restart: always logging: driver: "json-file" options: max-size: "50m" max-file: "3" zabbix-agent: image: zabbix/zabbix-agent:ubuntu-7.0-latest environment: - ZBX_HOSTNAME=Zabbix server - ZBX_SERVER_HOST=zabbix-server privileged: true pid: "host" volumes: - /var/run:/var/run restart: always logging: driver: "json-file" options: max-size: "50m" max-file: "3"