version: '3.5' services: zabbix-build-base: build: context: ./Dockerfiles/build-base/alpine cache_from: - alpine:3.17 image: zabbix-build-base:alpine-local zabbix-build-pgsql: build: context: ./Dockerfiles/build-pgsql/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-base:alpine-local image: zabbix-build-pgsql:alpine-local depends_on: - zabbix-build-base zabbix-build-mysql: build: context: ./Dockerfiles/build-mysql/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-base:alpine-local image: zabbix-build-mysql:alpine-local profiles: - all depends_on: - zabbix-build-base zabbix-build-sqlite3: build: context: ./Dockerfiles/build-sqlite3/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-base:alpine-local image: zabbix-build-sqlite3:alpine-local profiles: - all depends_on: - zabbix-build-base zabbix-server: build: context: ./Dockerfiles/server-pgsql/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-pgsql:alpine-local image: zabbix-server-pgsql:alpine-local ports: - "10051:10051" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/alertscripts:/usr/lib/zabbix/alertscripts:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/dbscripts:/var/lib/zabbix/dbscripts:ro - ./zbx_env/var/lib/zabbix/export:/var/lib/zabbix/export:rw - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro - ./zbx_env/var/lib/zabbix/ssh_keys:/var/lib/zabbix/ssh_keys:ro - ./zbx_env/var/lib/zabbix/mibs:/var/lib/zabbix/mibs:ro - snmptraps:/var/lib/zabbix/snmptraps:rw # - ./env_vars/.ZBX_DB_CA_FILE:/run/secrets/root-ca.pem:ro # - ./env_vars/.ZBX_DB_CERT_FILE:/run/secrets/client-cert.pem:ro # - ./env_vars/.ZBX_DB_KEY_FILE:/run/secrets/client-key.pem:ro ulimits: nproc: 65535 nofile: soft: 20000 hard: 40000 deploy: resources: limits: cpus: '0.70' memory: 1G reservations: cpus: '0.5' memory: 512M env_file: - ./env_vars/.env_db_pgsql - ./env_vars/.env_srv secrets: - POSTGRES_USER - POSTGRES_PASSWORD depends_on: - postgres-server - zabbix-build-pgsql networks: zbx_net_backend: aliases: - zabbix-server - zabbix-server-pgsql - zabbix-server-alpine-pgsql - zabbix-server-pgsql-alpine zbx_net_frontend: # devices: # - "/dev/ttyUSB0:/dev/ttyUSB0" stop_grace_period: 30s sysctls: - net.ipv4.ip_local_port_range=1024 64999 - net.ipv4.conf.all.accept_redirects=0 - net.ipv4.conf.all.secure_redirects=0 - net.ipv4.conf.all.send_redirects=0 labels: com.zabbix.description: "Zabbix server with PostgreSQL database support" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "zabbix-server" com.zabbix.dbtype: "pgsql" com.zabbix.os: "alpine" zabbix-proxy-sqlite3: build: context: ./Dockerfiles/proxy-sqlite3/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-sqlite3:alpine-local image: zabbix-proxy-sqlite3:alpine-local profiles: - all ports: - "10061:10051" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro - ./zbx_env/var/lib/zabbix/ssh_keys:/var/lib/zabbix/ssh_keys:ro - ./zbx_env/var/lib/zabbix/mibs:/var/lib/zabbix/mibs:ro - snmptraps:/var/lib/zabbix/snmptraps:rw ulimits: nproc: 65535 nofile: soft: 20000 hard: 40000 deploy: resources: limits: cpus: '0.70' memory: 512M reservations: cpus: '0.3' memory: 256M env_file: - ./env_vars/.env_prx - ./env_vars/.env_prx_sqlite3 depends_on: - zabbix-java-gateway - zabbix-snmptraps - zabbix-build-sqlite3 networks: zbx_net_backend: aliases: - zabbix-proxy-sqlite3 - zabbix-proxy-alpine-sqlite3 - zabbix-proxy-sqlite3-alpine zbx_net_frontend: stop_grace_period: 30s labels: com.zabbix.description: "Zabbix proxy with SQLite3 database support" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "zabbix-proxy" com.zabbix.dbtype: "sqlite3" com.zabbix.os: "alpine" zabbix-proxy-mysql: build: context: ./Dockerfiles/proxy-mysql/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-mysql:alpine-local image: zabbix-proxy-mysql:alpine-local profiles: - all ports: - "10071:10051" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./zbx_env/usr/lib/zabbix/externalscripts:/usr/lib/zabbix/externalscripts:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro - ./zbx_env/var/lib/zabbix/ssh_keys:/var/lib/zabbix/ssh_keys:ro - ./zbx_env/var/lib/zabbix/mibs:/var/lib/zabbix/mibs:ro - snmptraps:/var/lib/zabbix/snmptraps:rw ulimits: nproc: 65535 nofile: soft: 20000 hard: 40000 deploy: resources: limits: cpus: '0.70' memory: 512M reservations: cpus: '0.3' memory: 256M env_file: - ./env_vars/.env_db_mysql_proxy - ./env_vars/.env_prx - ./env_vars/.env_prx_mysql secrets: - MYSQL_USER - MYSQL_PASSWORD - MYSQL_ROOT_USER - MYSQL_ROOT_PASSWORD depends_on: - mysql-server - zabbix-java-gateway - zabbix-snmptraps - zabbix-build-mysql networks: zbx_net_backend: aliases: - zabbix-proxy-mysql - zabbix-proxy-alpine-mysql - zabbix-proxy-mysql-alpine zbx_net_frontend: stop_grace_period: 30s labels: com.zabbix.description: "Zabbix proxy with MySQL database support" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "zabbix-proxy" com.zabbix.dbtype: "mysql" com.zabbix.os: "alpine" zabbix-web-apache-pgsql: build: context: ./Dockerfiles/web-apache-pgsql/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-pgsql:alpine-local image: zabbix-web-apache-pgsql:alpine-local profiles: - all ports: - "8081:8080" - "8443:8443" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/apache2:/etc/ssl/apache2:ro - ./zbx_env/usr/share/zabbix/modules/:/usr/share/zabbix/modules/:ro # - ./env_vars/.ZBX_DB_CA_FILE:/run/secrets/root-ca.pem:ro # - ./env_vars/.ZBX_DB_CERT_FILE:/run/secrets/client-cert.pem:ro # - ./env_vars/.ZBX_DB_KEY_FILE:/run/secrets/client-key.pem:ro deploy: resources: limits: cpus: '0.70' memory: 512M reservations: cpus: '0.5' memory: 256M env_file: - ./env_vars/.env_db_pgsql - ./env_vars/.env_web secrets: - POSTGRES_USER - POSTGRES_PASSWORD depends_on: - postgres-server - zabbix-server - zabbix-build-pgsql healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080/"] interval: 10s timeout: 5s retries: 3 start_period: 30s networks: zbx_net_backend: aliases: - zabbix-web-apache-pgsql - zabbix-web-apache-alpine-pgsql - zabbix-web-apache-pgsql-alpine zbx_net_frontend: stop_grace_period: 10s sysctls: - net.core.somaxconn=65535 labels: com.zabbix.description: "Zabbix frontend on Apache web-server with PostgreSQL database support" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "zabbix-frontend" com.zabbix.webserver: "apache2" com.zabbix.dbtype: "pgsql" com.zabbix.os: "alpine" zabbix-web-nginx-pgsql: build: context: ./Dockerfiles/web-nginx-pgsql/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-pgsql:alpine-local image: zabbix-web-nginx-pgsql:alpine-local ports: - "80:8080" - "443:8443" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/ssl/nginx:/etc/ssl/nginx:ro - ./zbx_env/usr/share/zabbix/modules/:/usr/share/zabbix/modules/:ro # - ./env_vars/.ZBX_DB_CA_FILE:/run/secrets/root-ca.pem:ro # - ./env_vars/.ZBX_DB_CERT_FILE:/run/secrets/client-cert.pem:ro # - ./env_vars/.ZBX_DB_KEY_FILE:/run/secrets/client-key.pem:ro deploy: resources: limits: cpus: '0.70' memory: 512M reservations: cpus: '0.5' memory: 256M env_file: - ./env_vars/.env_db_pgsql - ./env_vars/.env_web secrets: - POSTGRES_USER - POSTGRES_PASSWORD depends_on: - postgres-server - zabbix-server - zabbix-build-pgsql healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080/ping"] interval: 10s timeout: 5s retries: 3 start_period: 30s networks: zbx_net_backend: aliases: - zabbix-web-nginx-pgsql - zabbix-web-nginx-alpine-pgsql - zabbix-web-nginx-pgsql-alpine zbx_net_frontend: stop_grace_period: 10s sysctls: - net.core.somaxconn=65535 labels: com.zabbix.description: "Zabbix frontend on Nginx web-server with PostgreSQL database support" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "zabbix-frontend" com.zabbix.webserver: "nginx" com.zabbix.dbtype: "pgsql" com.zabbix.os: "alpine" zabbix-agent: build: context: ./Dockerfiles/agent/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-pgsql:alpine-local image: zabbix-agent:alpine-local profiles: - full - all ports: - "10050:10050" volumes: - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro - ./zbx_env/etc/zabbix/zabbix_agentd.d:/etc/zabbix/zabbix_agentd.d:ro - ./zbx_env/var/lib/zabbix/modules:/var/lib/zabbix/modules:ro - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro - ./zbx_env/var/lib/zabbix/ssh_keys:/var/lib/zabbix/ssh_keys:ro deploy: resources: limits: cpus: '0.2' memory: 128M reservations: cpus: '0.1' memory: 64M mode: global env_file: - ./env_vars/.env_agent privileged: true pid: "host" depends_on: - zabbix-build-pgsql networks: zbx_net_backend: aliases: - zabbix-agent - zabbix-agent-passive - zabbix-agent-alpine stop_grace_period: 5s labels: com.zabbix.description: "Zabbix agent" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "zabbix-agentd" com.zabbix.os: "alpine" zabbix-java-gateway: build: context: ./Dockerfiles/java-gateway/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-pgsql:alpine-local image: zabbix-java-gateway:alpine-local profiles: - full - all ports: - "10052:10052" deploy: resources: limits: cpus: '0.5' memory: 512M reservations: cpus: '0.25' memory: 256M env_file: - ./env_vars/.env_java depends_on: - zabbix-build-pgsql networks: zbx_net_backend: aliases: - zabbix-java-gateway - zabbix-java-gateway-alpine stop_grace_period: 5s labels: com.zabbix.description: "Zabbix Java Gateway" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "java-gateway" com.zabbix.os: "alpine" zabbix-snmptraps: build: context: ./Dockerfiles/snmptraps/alpine cache_from: - alpine:3.17 image: zabbix-snmptraps:alpine-local profiles: - full - all ports: - "162:1162/udp" volumes: - snmptraps:/var/lib/zabbix/snmptraps:rw deploy: resources: limits: cpus: '0.5' memory: 256M reservations: cpus: '0.25' memory: 128M networks: zbx_net_frontend: aliases: - zabbix-snmptraps zbx_net_backend: stop_grace_period: 5s labels: com.zabbix.description: "Zabbix snmptraps" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "snmptraps" com.zabbix.os: "alpine" zabbix-web-service: build: context: ./Dockerfiles/web-service/alpine cache_from: - alpine:3.17 args: BUILD_BASE_IMAGE: zabbix-build-pgsql:alpine-local image: zabbix-web-service:alpine-local profiles: - full - all ports: - "10053:10053" volumes: - ./zbx_env/var/lib/zabbix/enc:/var/lib/zabbix/enc:ro security_opt: - seccomp:./env_vars/chrome_dp.json deploy: resources: limits: cpus: '0.5' memory: 512M reservations: cpus: '0.25' memory: 256M env_file: - ./env_vars/.env_web_service depends_on: - zabbix-build-pgsql networks: zbx_net_backend: aliases: - zabbix-web-service - zabbix-web-service-alpine stop_grace_period: 5s labels: com.zabbix.description: "Zabbix web service" com.zabbix.company: "Zabbix LLC" com.zabbix.component: "web-service" com.zabbix.os: "alpine" mysql-server: image: mysql:8.0-oracle profiles: - all command: - mysqld - --character-set-server=utf8mb4 - --collation-server=utf8mb4_bin - --skip-character-set-client-handshake - --default-authentication-plugin=mysql_native_password volumes: - ./zbx_env/var/lib/mysql:/var/lib/mysql:rw env_file: - ./env_vars/.env_db_mysql secrets: - MYSQL_USER - MYSQL_PASSWORD - MYSQL_ROOT_PASSWORD stop_grace_period: 1m networks: zbx_net_backend: aliases: - mysql-server - zabbix-database - mysql-database postgres-server: image: postgres:14-alpine # command: -c ssl=on -c ssl_cert_file=/run/secrets/server-cert.pem -c ssl_key_file=/run/secrets/server-key.pem -c ssl_ca_file=/run/secrets/root-ca.pem volumes: - ./zbx_env/var/lib/postgresql/data:/var/lib/postgresql/data:rw - ./env_vars/.ZBX_DB_CA_FILE:/run/secrets/root-ca.pem:ro - ./env_vars/.ZBX_DB_CERT_FILE:/run/secrets/server-cert.pem:ro - ./env_vars/.ZBX_DB_KEY_FILE:/run/secrets/server-key.pem:ro env_file: - ./env_vars/.env_db_pgsql secrets: - POSTGRES_USER - POSTGRES_PASSWORD stop_grace_period: 1m networks: zbx_net_backend: aliases: - postgres-server - pgsql-server - pgsql-database db_data_mysql: image: busybox profiles: - all volumes: - ./zbx_env/var/lib/mysql:/var/lib/mysql:rw db_data_pgsql: image: busybox volumes: - ./zbx_env/var/lib/postgresql/data:/var/lib/postgresql/data:rw # elasticsearch: # image: elasticsearch # profiles: # - full # - all # environment: # - transport.host=0.0.0.0 # - discovery.zen.minimum_master_nodes=1 # networks: # zbx_net_backend: # aliases: # - elasticsearch networks: zbx_net_frontend: driver: bridge driver_opts: com.docker.network.enable_ipv6: "false" ipam: driver: default config: - subnet: 172.16.238.0/24 zbx_net_backend: driver: bridge driver_opts: com.docker.network.enable_ipv6: "false" internal: true ipam: driver: default config: - subnet: 172.16.239.0/24 volumes: snmptraps: secrets: MYSQL_USER: file: ./env_vars/.MYSQL_USER MYSQL_PASSWORD: file: ./env_vars/.MYSQL_PASSWORD MYSQL_ROOT_USER: file: ./env_vars/.MYSQL_ROOT_USER MYSQL_ROOT_PASSWORD: file: ./env_vars/.MYSQL_ROOT_PASSWORD POSTGRES_USER: file: ./env_vars/.POSTGRES_USER POSTGRES_PASSWORD: file: ./env_vars/.POSTGRES_PASSWORD