From e2aaf877bd70cb96d856d62fbd098d044d0a34ea Mon Sep 17 00:00:00 2001 From: root Date: Tue, 20 Feb 2018 06:35:32 -0800 Subject: [PATCH] Added v3 compose files --- docker-compose_v2_alpine_mysql_local.yaml | 16 ++++++++-------- docker-compose_v2_alpine_pgsql_local.yaml | 16 ++++++++-------- docker-compose_v2_centos_mysql_local.yaml | 16 ++++++++-------- docker-compose_v2_centos_pgsql_local.yaml | 16 ++++++++-------- docker-compose_v2_ubuntu_mysql_local.yaml | 16 ++++++++-------- docker-compose_v2_ubuntu_pgsql_local.yaml | 16 ++++++++-------- docker-compose_v3_alpine_mysql_latest.yaml | 16 ++++++++-------- docker-compose_v3_alpine_mysql_local.yaml | 16 ++++++++-------- docker-compose_v3_alpine_pgsql_latest.yaml | 16 ++++++++-------- docker-compose_v3_alpine_pgsql_local.yaml | 16 ++++++++-------- docker-compose_v3_centos_mysql_latest.yaml | 16 ++++++++-------- docker-compose_v3_centos_mysql_local.yaml | 16 ++++++++-------- docker-compose_v3_centos_pgsql_latest.yaml | 16 ++++++++-------- docker-compose_v3_centos_pgsql_local.yaml | 16 ++++++++-------- docker-compose_v3_ubuntu_mysql_latest.yaml | 16 ++++++++-------- docker-compose_v3_ubuntu_mysql_local.yaml | 16 ++++++++-------- docker-compose_v3_ubuntu_pgsql_latest.yaml | 16 ++++++++-------- docker-compose_v3_ubuntu_pgsql_local.yaml | 16 ++++++++-------- 18 files changed, 144 insertions(+), 144 deletions(-) diff --git a/docker-compose_v2_alpine_mysql_local.yaml b/docker-compose_v2_alpine_mysql_local.yaml index 3de23c994..c95a22e70 100644 --- a/docker-compose_v2_alpine_mysql_local.yaml +++ b/docker-compose_v2_alpine_mysql_local.yaml @@ -2,7 +2,7 @@ version: '2' services: zabbix-server: build: ./server-mysql/alpine - image: zabbix-server-mysql:alpine-local + image: zabbix-server-mysql:alpine-3.0-local ports: - "10051:10051" volumes: @@ -45,7 +45,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/alpine - image: zabbix-proxy-sqlite3:alpine-local + image: zabbix-proxy-sqlite3:alpine-3.0-local ports: - "10061:10051" volumes: @@ -86,7 +86,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/alpine - image: zabbix-proxy-mysql:alpine-local + image: zabbix-proxy-mysql:alpine-3.0-local ports: - "10071:10051" volumes: @@ -128,7 +128,7 @@ services: zabbix-web-apache-mysql: build: ./web-apache-mysql/alpine - image: zabbix-web-apache-mysql:alpine-local + image: zabbix-web-apache-mysql:alpine-3.0-local ports: - "80:80" - "443:443" @@ -160,7 +160,7 @@ services: zabbix-web-nginx-mysql: build: ./web-nginx-mysql/alpine - image: zabbix-web-nginx-mysql:alpine-local + image: zabbix-web-nginx-mysql:alpine-3.0-local ports: - "8081:80" - "8443:443" @@ -192,7 +192,7 @@ services: zabbix-agent: build: ./agent/alpine - image: zabbix-agent:alpine-local + image: zabbix-agent:alpine-3.0-local ports: - "10050:10050" volumes: @@ -223,7 +223,7 @@ services: zabbix-java-gateway: build: ./java-gateway/alpine - image: zabbix-java-gateway:alpine-local + image: zabbix-java-gateway:alpine-3.0-local ports: - "10052:10052" env_file: @@ -242,7 +242,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v2_alpine_pgsql_local.yaml b/docker-compose_v2_alpine_pgsql_local.yaml index dd27fbd3f..f46e1f5cf 100644 --- a/docker-compose_v2_alpine_pgsql_local.yaml +++ b/docker-compose_v2_alpine_pgsql_local.yaml @@ -2,7 +2,7 @@ version: '2' services: zabbix-server: build: ./server-pgsql/alpine - image: zabbix-server-pgsql:alpine-local + image: zabbix-server-pgsql:alpine-3.0-local ports: - "10051:10051" volumes: @@ -45,7 +45,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/alpine - image: zabbix-proxy-sqlite3:alpine-local + image: zabbix-proxy-sqlite3:alpine-3.0-local ports: - "10061:10051" volumes: @@ -86,7 +86,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/alpine - image: zabbix-proxy-mysql:alpine-local + image: zabbix-proxy-mysql:alpine-3.0-local ports: - "10071:10051" volumes: @@ -129,7 +129,7 @@ services: zabbix-web-apache-pgsql: build: ./web-apache-pgsql/alpine - image: zabbix-web-apache-pgsql:alpine-local + image: zabbix-web-apache-pgsql:alpine-3.0-local ports: - "80:80" - "443:443" @@ -161,7 +161,7 @@ services: zabbix-web-nginx-pgsql: build: ./web-nginx-pgsql/alpine - image: zabbix-web-nginx-pgsql:alpine-local + image: zabbix-web-nginx-pgsql:alpine-3.0-local ports: - "8081:80" - "8443:443" @@ -193,7 +193,7 @@ services: zabbix-agent: build: ./agent/alpine - image: zabbix-agent:alpine-local + image: zabbix-agent:alpine-3.0-local ports: - "10050:10050" volumes: @@ -224,7 +224,7 @@ services: zabbix-java-gateway: build: ./java-gateway/alpine - image: zabbix-java-gateway:alpine-local + image: zabbix-java-gateway:alpine-3.0-local ports: - "10052:10052" env_file: @@ -243,7 +243,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v2_centos_mysql_local.yaml b/docker-compose_v2_centos_mysql_local.yaml index 8f471f583..57f5dd5d7 100644 --- a/docker-compose_v2_centos_mysql_local.yaml +++ b/docker-compose_v2_centos_mysql_local.yaml @@ -2,7 +2,7 @@ version: '2' services: zabbix-server: build: ./server-mysql/centos - image: zabbix-server-mysql:centos-local + image: zabbix-server-mysql:centos-3.0-local ports: - "10051:10051" volumes: @@ -45,7 +45,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/centos - image: zabbix-proxy-sqlite3:centos-local + image: zabbix-proxy-sqlite3:centos-3.0-local ports: - "10061:10051" volumes: @@ -86,7 +86,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/centos - image: zabbix-proxy-mysql:centos-local + image: zabbix-proxy-mysql:centos-3.0-local ports: - "10071:10051" volumes: @@ -128,7 +128,7 @@ services: zabbix-web-apache-mysql: build: ./web-apache-mysql/centos - image: zabbix-web-apache-mysql:centos-local + image: zabbix-web-apache-mysql:centos-3.0-local ports: - "80:80" - "443:443" @@ -160,7 +160,7 @@ services: zabbix-web-nginx-mysql: build: ./web-nginx-mysql/centos - image: zabbix-web-nginx-mysql:centos-local + image: zabbix-web-nginx-mysql:centos-3.0-local ports: - "8081:80" - "8443:443" @@ -192,7 +192,7 @@ services: zabbix-agent: build: ./agent/centos - image: zabbix-agent:centos-local + image: zabbix-agent:centos-3.0-local ports: - "10050:10050" volumes: @@ -223,7 +223,7 @@ services: zabbix-java-gateway: build: ./java-gateway/centos - image: zabbix-java-gateway:centos-local + image: zabbix-java-gateway:centos-3.0-local ports: - "10052:10052" env_file: @@ -242,7 +242,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v2_centos_pgsql_local.yaml b/docker-compose_v2_centos_pgsql_local.yaml index d899c645c..3a042e52a 100644 --- a/docker-compose_v2_centos_pgsql_local.yaml +++ b/docker-compose_v2_centos_pgsql_local.yaml @@ -2,7 +2,7 @@ version: '2' services: zabbix-server: build: ./server-pgsql/centos - image: zabbix-server-pgsql:centos-local + image: zabbix-server-pgsql:centos-3.0-local ports: - "10051:10051" volumes: @@ -45,7 +45,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/centos - image: zabbix-proxy-sqlite3:centos-local + image: zabbix-proxy-sqlite3:centos-3.0-local ports: - "10061:10051" volumes: @@ -86,7 +86,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/centos - image: zabbix-proxy-mysql:centos-local + image: zabbix-proxy-mysql:centos-3.0-local ports: - "10071:10051" volumes: @@ -129,7 +129,7 @@ services: zabbix-web-apache-pgsql: build: ./web-apache-pgsql/centos - image: zabbix-web-apache-pgsql:centos-local + image: zabbix-web-apache-pgsql:centos-3.0-local ports: - "80:80" - "443:443" @@ -161,7 +161,7 @@ services: zabbix-web-nginx-pgsql: build: ./web-nginx-pgsql/centos - image: zabbix-web-nginx-pgsql:centos-local + image: zabbix-web-nginx-pgsql:centos-3.0-local ports: - "8081:80" - "8443:443" @@ -193,7 +193,7 @@ services: zabbix-agent: build: ./agent/centos - image: zabbix-agent:centos-local + image: zabbix-agent:centos-3.0-local ports: - "10050:10050" volumes: @@ -224,7 +224,7 @@ services: zabbix-java-gateway: build: ./java-gateway/centos - image: zabbix-java-gateway:centos-local + image: zabbix-java-gateway:centos-3.0-local ports: - "10052:10052" env_file: @@ -243,7 +243,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v2_ubuntu_mysql_local.yaml b/docker-compose_v2_ubuntu_mysql_local.yaml index a52addddd..0be201750 100644 --- a/docker-compose_v2_ubuntu_mysql_local.yaml +++ b/docker-compose_v2_ubuntu_mysql_local.yaml @@ -2,7 +2,7 @@ version: '2' services: zabbix-server: build: ./server-mysql/ubuntu - image: zabbix-server-mysql:ubuntu-local + image: zabbix-server-mysql:ubuntu-3.0-local ports: - "10051:10051" volumes: @@ -46,7 +46,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/ubuntu - image: zabbix-proxy-sqlite3:ubuntu-local + image: zabbix-proxy-sqlite3:ubuntu-3.0-local ports: - "10061:10051" volumes: @@ -87,7 +87,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/ubuntu - image: zabbix-proxy-mysql:ubuntu-local + image: zabbix-proxy-mysql:ubuntu-3.0-local ports: - "10071:10051" volumes: @@ -129,7 +129,7 @@ services: zabbix-web-apache-mysql: build: ./web-apache-mysql/ubuntu - image: zabbix-web-apache-mysql:ubuntu-local + image: zabbix-web-apache-mysql:ubuntu-3.0-local ports: - "80:80" - "443:443" @@ -161,7 +161,7 @@ services: zabbix-web-nginx-mysql: build: ./web-nginx-mysql/ubuntu - image: zabbix-web-nginx-mysql:ubuntu-local + image: zabbix-web-nginx-mysql:ubuntu-3.0-local ports: - "8081:80" - "8443:443" @@ -193,7 +193,7 @@ services: zabbix-agent: build: ./agent/ubuntu - image: zabbix-agent:ubuntu-local + image: zabbix-agent:ubuntu-3.0-local ports: - "10050:10050" volumes: @@ -224,7 +224,7 @@ services: zabbix-java-gateway: build: ./java-gateway/ubuntu - image: zabbix-java-gateway:ubuntu-local + image: zabbix-java-gateway:ubuntu-3.0-local ports: - "10052:10052" env_file: @@ -243,7 +243,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v2_ubuntu_pgsql_local.yaml b/docker-compose_v2_ubuntu_pgsql_local.yaml index 33caa267f..fcf43671e 100644 --- a/docker-compose_v2_ubuntu_pgsql_local.yaml +++ b/docker-compose_v2_ubuntu_pgsql_local.yaml @@ -2,7 +2,7 @@ version: '2' services: zabbix-server: build: ./server-pgsql/ubuntu - image: zabbix-server-pgsql:ubuntu-local + image: zabbix-server-pgsql:ubuntu-3.0-local ports: - "10051:10051" volumes: @@ -45,7 +45,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/ubuntu - image: zabbix-proxy-sqlite3:ubuntu-local + image: zabbix-proxy-sqlite3:ubuntu-3.0-local ports: - "10061:10051" volumes: @@ -86,7 +86,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/ubuntu - image: zabbix-proxy-mysql:ubuntu-local + image: zabbix-proxy-mysql:ubuntu-3.0-local ports: - "10071:10051" volumes: @@ -128,7 +128,7 @@ services: zabbix-web-apache-pgsql: build: ./web-apache-pgsql/ubuntu - image: zabbix-web-apache-pgsql:ubuntu-local + image: zabbix-web-apache-pgsql:ubuntu-3.0-local ports: - "80:80" - "443:443" @@ -160,7 +160,7 @@ services: zabbix-web-nginx-pgsql: build: ./web-nginx-pgsql/ubuntu - image: zabbix-web-nginx-pgsql:ubuntu-local + image: zabbix-web-nginx-pgsql:ubuntu-3.0-local ports: - "8081:80" - "8443:443" @@ -192,7 +192,7 @@ services: zabbix-agent: build: ./agent/ubuntu - image: zabbix-agent:ubuntu-local + image: zabbix-agent:ubuntu-3.0-local ports: - "10050:10050" volumes: @@ -223,7 +223,7 @@ services: zabbix-java-gateway: build: ./java-gateway/ubuntu - image: zabbix-java-gateway:ubuntu-local + image: zabbix-java-gateway:ubuntu-3.0-local ports: - "10052:10052" env_file: @@ -242,7 +242,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_alpine_mysql_latest.yaml b/docker-compose_v3_alpine_mysql_latest.yaml index 21715350c..ca0187aab 100644 --- a/docker-compose_v3_alpine_mysql_latest.yaml +++ b/docker-compose_v3_alpine_mysql_latest.yaml @@ -1,7 +1,7 @@ version: '3.5' services: zabbix-server: - image: zabbix/zabbix-server-mysql:alpine-latest + image: zabbix/zabbix-server-mysql:alpine-3.0-latest ports: - "10051:10051" volumes: @@ -62,7 +62,7 @@ services: com.zabbix.os: "alpine" zabbix-proxy-sqlite3: - image: zabbix/zabbix-proxy-sqlite3:alpine-latest + image: zabbix/zabbix-proxy-sqlite3:alpine-3.0-latest ports: - "10061:10051" volumes: @@ -113,7 +113,7 @@ services: com.zabbix.os: "alpine" zabbix-proxy-mysql: - image: zabbix/zabbix-proxy-mysql:alpine-latest + image: zabbix/zabbix-proxy-mysql:alpine-3.0-latest ports: - "10071:10051" volumes: @@ -166,7 +166,7 @@ services: com.zabbix.os: "alpine" zabbix-web-apache-mysql: - image: zabbix/zabbix-web-apache-mysql:alpine-latest + image: zabbix/zabbix-web-apache-mysql:alpine-3.0-latest ports: - "80:80" - "443:443" @@ -217,7 +217,7 @@ services: com.zabbix.os: "alpine" zabbix-web-nginx-mysql: - image: zabbix/zabbix-web-nginx-mysql:alpine-latest + image: zabbix/zabbix-web-nginx-mysql:alpine-3.0-latest ports: - "8081:80" - "8443:443" @@ -268,7 +268,7 @@ services: com.zabbix.os: "alpine" zabbix-agent: - image: zabbix/zabbix-agent:alpine-latest + image: zabbix/zabbix-agent:alpine-3.0-latest ports: - "10050:10050" volumes: @@ -308,7 +308,7 @@ services: com.zabbix.os: "alpine" zabbix-java-gateway: - image: zabbix/zabbix-java-gateway:alpine-latest + image: zabbix/zabbix-java-gateway:alpine-3.0-latest ports: - "10052:10052" deploy: @@ -335,7 +335,7 @@ services: com.zabbix.os: "alpine" zabbix-snmptraps: - image: zabbix/zabbix-snmptraps:ubuntu-latest + image: zabbix/zabbix-snmptraps:ubuntu-3.0-latest ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_alpine_mysql_local.yaml b/docker-compose_v3_alpine_mysql_local.yaml index d1c652a80..f4e90b251 100644 --- a/docker-compose_v3_alpine_mysql_local.yaml +++ b/docker-compose_v3_alpine_mysql_local.yaml @@ -5,7 +5,7 @@ services: context: ./server-mysql/alpine cache_from: - alpine:3.4 - image: zabbix-server-mysql:alpine-local + image: zabbix-server-mysql:alpine-3.0-local ports: - "10051:10051" volumes: @@ -70,7 +70,7 @@ services: context: ./proxy-sqlite3/alpine cache_from: - alpine:3.4 - image: zabbix-proxy-sqlite3:alpine-local + image: zabbix-proxy-sqlite3:alpine-3.0-local ports: - "10061:10051" volumes: @@ -125,7 +125,7 @@ services: context: ./proxy-mysql/alpine cache_from: - alpine:3.4 - image: zabbix-proxy-mysql:alpine-local + image: zabbix-proxy-mysql:alpine-3.0-local ports: - "10071:10051" volumes: @@ -182,7 +182,7 @@ services: context: ./web-apache-mysql/alpine cache_from: - alpine:3.4 - image: zabbix-web-apache-mysql:alpine-local + image: zabbix-web-apache-mysql:alpine-3.0-local ports: - "80:80" - "443:443" @@ -237,7 +237,7 @@ services: context: ./web-nginx-mysql/alpine cache_from: - alpine:3.4 - image: zabbix-web-nginx-mysql:alpine-local + image: zabbix-web-nginx-mysql:alpine-3.0-local ports: - "8081:80" - "8443:443" @@ -292,7 +292,7 @@ services: context: ./agent/alpine cache_from: - alpine:3.4 - image: zabbix-agent:alpine-local + image: zabbix-agent:alpine-3.0-local ports: - "10050:10050" volumes: @@ -336,7 +336,7 @@ services: context: ./java-gateway/alpine cache_from: - alpine:3.4 - image: zabbix-java-gateway:alpine-local + image: zabbix-java-gateway:alpine-3.0-local ports: - "10052:10052" deploy: @@ -367,7 +367,7 @@ services: context: ./snmptraps/ubuntu cache_from: - ubuntu:trusty - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_alpine_pgsql_latest.yaml b/docker-compose_v3_alpine_pgsql_latest.yaml index 813c05af7..adadc48f0 100644 --- a/docker-compose_v3_alpine_pgsql_latest.yaml +++ b/docker-compose_v3_alpine_pgsql_latest.yaml @@ -1,7 +1,7 @@ version: '3.5' services: zabbix-server: - image: zabbix/zabbix-server-pgsql:alpine-latest + image: zabbix/zabbix-server-pgsql:alpine-3.0-latest ports: - "10051:10051" volumes: @@ -62,7 +62,7 @@ services: com.zabbix.os: "alpine" zabbix-proxy-sqlite3: - image: zabbix/zabbix-proxy-sqlite3:alpine-latest + image: zabbix/zabbix-proxy-sqlite3:alpine-3.0-latest ports: - "10061:10051" volumes: @@ -113,7 +113,7 @@ services: com.zabbix.os: "alpine" zabbix-proxy-mysql: - image: zabbix/zabbix-proxy-mysql:alpine-latest + image: zabbix/zabbix-proxy-mysql:alpine-3.0-latest ports: - "10071:10051" volumes: @@ -166,7 +166,7 @@ services: com.zabbix.os: "alpine" zabbix-web-apache-pgsql: - image: zabbix/zabbix-web-apache-pgsql:alpine-latest + image: zabbix/zabbix-web-apache-pgsql:alpine-3.0-latest ports: - "80:80" - "443:443" @@ -217,7 +217,7 @@ services: com.zabbix.os: "alpine" zabbix-web-nginx-pgsql: - image: zabbix/zabbix-web-nginx-pgsql:alpine-latest + image: zabbix/zabbix-web-nginx-pgsql:alpine-3.0-latest ports: - "8081:80" - "8443:443" @@ -268,7 +268,7 @@ services: com.zabbix.os: "alpine" zabbix-agent: - image: zabbix/zabbix-agent:alpine-latest + image: zabbix/zabbix-agent:alpine-3.0-latest ports: - "10050:10050" volumes: @@ -308,7 +308,7 @@ services: com.zabbix.os: "alpine" zabbix-java-gateway: - image: zabbix/zabbix-java-gateway:alpine-latest + image: zabbix/zabbix-java-gateway:alpine-3.0-latest ports: - "10052:10052" deploy: @@ -335,7 +335,7 @@ services: com.zabbix.os: "alpine" zabbix-snmptraps: - image: zabbix/zabbix-snmptraps:ubuntu-latest + image: zabbix/zabbix-snmptraps:ubuntu-3.0-latest ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_alpine_pgsql_local.yaml b/docker-compose_v3_alpine_pgsql_local.yaml index c0b3370fe..0288019e6 100644 --- a/docker-compose_v3_alpine_pgsql_local.yaml +++ b/docker-compose_v3_alpine_pgsql_local.yaml @@ -5,7 +5,7 @@ services: context: ./server-pgsql/alpine cache_from: - alpine:3.4 - image: zabbix-server-pgsql:alpine-local + image: zabbix-server-pgsql:alpine-3.0-local ports: - "10051:10051" volumes: @@ -70,7 +70,7 @@ services: context: ./proxy-sqlite3/alpine cache_from: - alpine:3.4 - image: zabbix-proxy-sqlite3:alpine-local + image: zabbix-proxy-sqlite3:alpine-3.0-local ports: - "10061:10051" volumes: @@ -125,7 +125,7 @@ services: context: ./proxy-pgsql/alpine cache_from: - alpine:3.4 - image: zabbix-proxy-mysql:alpine-local + image: zabbix-proxy-mysql:alpine-3.0-local ports: - "10071:10051" volumes: @@ -183,7 +183,7 @@ services: context: ./web-apache-pgsql/alpine cache_from: - alpine:3.4 - image: zabbix-web-apache-pgsql:alpine-local + image: zabbix-web-apache-pgsql:alpine-3.0-local ports: - "80:80" - "443:443" @@ -238,7 +238,7 @@ services: context: ./web-nginx-pgsql/alpine cache_from: - alpine:3.4 - image: zabbix-web-nginx-pgsql:alpine-local + image: zabbix-web-nginx-pgsql:alpine-3.0-local ports: - "8081:80" - "8443:443" @@ -293,7 +293,7 @@ services: context: ./agent/alpine cache_from: - alpine:3.4 - image: zabbix-agent:alpine-local + image: zabbix-agent:alpine-3.0-local ports: - "10050:10050" volumes: @@ -337,7 +337,7 @@ services: context: ./java-gateway/alpine cache_from: - alpine:3.4 - image: zabbix-java-gateway:alpine-local + image: zabbix-java-gateway:alpine-3.0-local ports: - "10052:10052" deploy: @@ -368,7 +368,7 @@ services: context: ./snmptraps/ubuntu cache_from: - ubuntu:trusty - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_centos_mysql_latest.yaml b/docker-compose_v3_centos_mysql_latest.yaml index c5ac0146a..d2ca6b790 100644 --- a/docker-compose_v3_centos_mysql_latest.yaml +++ b/docker-compose_v3_centos_mysql_latest.yaml @@ -1,7 +1,7 @@ version: '3.5' services: zabbix-server: - image: zabbix/zabbix-server-mysql:centos-latest + image: zabbix/zabbix-server-mysql:centos-3.0-latest ports: - "10051:10051" volumes: @@ -62,7 +62,7 @@ services: com.zabbix.os: "centos" zabbix-proxy-sqlite3: - image: zabbix/zabbix-proxy-sqlite3:centos-latest + image: zabbix/zabbix-proxy-sqlite3:centos-3.0-latest ports: - "10061:10051" volumes: @@ -113,7 +113,7 @@ services: com.zabbix.os: "centos" zabbix-proxy-mysql: - image: zabbix/zabbix-proxy-mysql:centos-latest + image: zabbix/zabbix-proxy-mysql:centos-3.0-latest ports: - "10071:10051" volumes: @@ -166,7 +166,7 @@ services: com.zabbix.os: "centos" zabbix-web-apache-mysql: - image: zabbix/zabbix-web-apache-mysql:centos-latest + image: zabbix/zabbix-web-apache-mysql:centos-3.0-latest ports: - "80:80" - "443:443" @@ -217,7 +217,7 @@ services: com.zabbix.os: "centos" zabbix-web-nginx-mysql: - image: zabbix/zabbix-web-nginx-mysql:centos-latest + image: zabbix/zabbix-web-nginx-mysql:centos-3.0-latest ports: - "8081:80" - "8443:443" @@ -268,7 +268,7 @@ services: com.zabbix.os: "centos" zabbix-agent: - image: zabbix/zabbix-agent:centos-latest + image: zabbix/zabbix-agent:centos-3.0-latest ports: - "10050:10050" volumes: @@ -308,7 +308,7 @@ services: com.zabbix.os: "centos" zabbix-java-gateway: - image: zabbix/zabbix-java-gateway:centos-latest + image: zabbix/zabbix-java-gateway:centos-3.0-latest ports: - "10052:10052" deploy: @@ -335,7 +335,7 @@ services: com.zabbix.os: "centos" zabbix-snmptraps: - image: zabbix/zabbix-snmptraps:ubuntu-latest + image: zabbix/zabbix-snmptraps:ubuntu-3.0-latest ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_centos_mysql_local.yaml b/docker-compose_v3_centos_mysql_local.yaml index 1125ba472..34ebf3b38 100644 --- a/docker-compose_v3_centos_mysql_local.yaml +++ b/docker-compose_v3_centos_mysql_local.yaml @@ -5,7 +5,7 @@ services: context: ./server-mysql/centos cache_from: - centos:centos7 - image: zabbix-server-mysql:centos-local + image: zabbix-server-mysql:centos-3.0-local ports: - "10051:10051" volumes: @@ -70,7 +70,7 @@ services: context: ./proxy-sqlite3/centos cache_from: - centos:centos7 - image: zabbix-proxy-sqlite3:centos-local + image: zabbix-proxy-sqlite3:centos-3.0-local ports: - "10061:10051" volumes: @@ -125,7 +125,7 @@ services: context: ./proxy-mysql/centos cache_from: - centos:centos7 - image: zabbix-proxy-mysql:centos-local + image: zabbix-proxy-mysql:centos-3.0-local ports: - "10071:10051" volumes: @@ -182,7 +182,7 @@ services: context: ./web-apache-mysql/centos cache_from: - centos:centos7 - image: zabbix-web-apache-mysql:centos-local + image: zabbix-web-apache-mysql:centos-3.0-local ports: - "80:80" - "443:443" @@ -237,7 +237,7 @@ services: context: ./web-nginx-mysql/centos cache_from: - centos:centos7 - image: zabbix-web-nginx-mysql:centos-local + image: zabbix-web-nginx-mysql:centos-3.0-local ports: - "8081:80" - "8443:443" @@ -292,7 +292,7 @@ services: context: ./agent/centos cache_from: - centos:centos7 - image: zabbix-agent:centos-local + image: zabbix-agent:centos-3.0-local ports: - "10050:10050" volumes: @@ -336,7 +336,7 @@ services: context: ./java-gateway/centos cache_from: - centos:centos7 - image: zabbix-java-gateway:centos-local + image: zabbix-java-gateway:centos-3.0-local ports: - "10052:10052" deploy: @@ -367,7 +367,7 @@ services: context: ./snmptraps/ubuntu cache_from: - ubuntu:trusty - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_centos_pgsql_latest.yaml b/docker-compose_v3_centos_pgsql_latest.yaml index ff8e600f0..0a43fb15e 100644 --- a/docker-compose_v3_centos_pgsql_latest.yaml +++ b/docker-compose_v3_centos_pgsql_latest.yaml @@ -1,7 +1,7 @@ version: '3.5' services: zabbix-server: - image: zabbix/zabbix-server-pgsql:centos-latest + image: zabbix/zabbix-server-pgsql:centos-3.0-latest ports: - "10051:10051" volumes: @@ -62,7 +62,7 @@ services: com.zabbix.os: "centos" zabbix-proxy-sqlite3: - image: zabbix/zabbix-proxy-sqlite3:centos-latest + image: zabbix/zabbix-proxy-sqlite3:centos-3.0-latest ports: - "10061:10051" volumes: @@ -113,7 +113,7 @@ services: com.zabbix.os: "centos" zabbix-proxy-mysql: - image: zabbix/zabbix-proxy-mysql:centos-latest + image: zabbix/zabbix-proxy-mysql:centos-3.0-latest ports: - "10071:10051" volumes: @@ -166,7 +166,7 @@ services: com.zabbix.os: "centos" zabbix-web-apache-pgsql: - image: zabbix/zabbix-web-apache-pgsql:centos-latest + image: zabbix/zabbix-web-apache-pgsql:centos-3.0-latest ports: - "80:80" - "443:443" @@ -217,7 +217,7 @@ services: com.zabbix.os: "centos" zabbix-web-nginx-pgsql: - image: zabbix/zabbix-web-nginx-pgsql:centos-latest + image: zabbix/zabbix-web-nginx-pgsql:centos-3.0-latest ports: - "8081:80" - "8443:443" @@ -268,7 +268,7 @@ services: com.zabbix.os: "centos" zabbix-agent: - image: zabbix/zabbix-agent:centos-latest + image: zabbix/zabbix-agent:centos-3.0-latest ports: - "10050:10050" volumes: @@ -308,7 +308,7 @@ services: com.zabbix.os: "centos" zabbix-java-gateway: - image: zabbix/zabbix-java-gateway:centos-latest + image: zabbix/zabbix-java-gateway:centos-3.0-latest ports: - "10052:10052" deploy: @@ -335,7 +335,7 @@ services: com.zabbix.os: "centos" zabbix-snmptraps: - image: zabbix/zabbix-snmptraps:ubuntu-latest + image: zabbix/zabbix-snmptraps:ubuntu-3.0-latest ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_centos_pgsql_local.yaml b/docker-compose_v3_centos_pgsql_local.yaml index d00156dc4..a4e710abd 100644 --- a/docker-compose_v3_centos_pgsql_local.yaml +++ b/docker-compose_v3_centos_pgsql_local.yaml @@ -2,7 +2,7 @@ version: '3.5' services: zabbix-server: build: ./server-pgsql/centos - image: zabbix-server-pgsql:centos-local + image: zabbix-server-pgsql:centos-3.0-local ports: - "10051:10051" volumes: @@ -64,7 +64,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/centos - image: zabbix-proxy-sqlite3:centos-local + image: zabbix-proxy-sqlite3:centos-3.0-local ports: - "10061:10051" volumes: @@ -116,7 +116,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/centos - image: zabbix-proxy-mysql:centos-local + image: zabbix-proxy-mysql:centos-3.0-local ports: - "10071:10051" volumes: @@ -171,7 +171,7 @@ services: zabbix-web-apache-pgsql: build: ./web-apache-pgsql/centos - image: zabbix-web-apache-pgsql:centos-local + image: zabbix-web-apache-pgsql:centos-3.0-local ports: - "80:80" - "443:443" @@ -223,7 +223,7 @@ services: zabbix-web-nginx-pgsql: build: ./web-nginx-pgsql/centos - image: zabbix-web-nginx-pgsql:centos-local + image: zabbix-web-nginx-pgsql:centos-3.0-local ports: - "8081:80" - "8443:443" @@ -275,7 +275,7 @@ services: zabbix-agent: build: ./agent/centos - image: zabbix-agent:centos-local + image: zabbix-agent:centos-3.0-local ports: - "10050:10050" volumes: @@ -316,7 +316,7 @@ services: zabbix-java-gateway: build: ./java-gateway/centos - image: zabbix-java-gateway:centos-local + image: zabbix-java-gateway:centos-3.0-local ports: - "10052:10052" deploy: @@ -344,7 +344,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_ubuntu_mysql_latest.yaml b/docker-compose_v3_ubuntu_mysql_latest.yaml index acde59319..0244eb623 100644 --- a/docker-compose_v3_ubuntu_mysql_latest.yaml +++ b/docker-compose_v3_ubuntu_mysql_latest.yaml @@ -1,7 +1,7 @@ version: '3.5' services: zabbix-server: - image: zabbix/zabbix-server-mysql:ubuntu-latest + image: zabbix/zabbix-server-mysql:ubuntu-3.0-latest ports: - "10051:10051" volumes: @@ -62,7 +62,7 @@ services: com.zabbix.os: "ubuntu" zabbix-proxy-sqlite3: - image: zabbix/zabbix-proxy-sqlite3:ubuntu-latest + image: zabbix/zabbix-proxy-sqlite3:ubuntu-3.0-latest ports: - "10061:10051" volumes: @@ -113,7 +113,7 @@ services: com.zabbix.os: "ubuntu" zabbix-proxy-mysql: - image: zabbix/zabbix-proxy-mysql:ubuntu-latest + image: zabbix/zabbix-proxy-mysql:ubuntu-3.0-latest ports: - "10071:10051" volumes: @@ -166,7 +166,7 @@ services: com.zabbix.os: "ubuntu" zabbix-web-apache-mysql: - image: zabbix/zabbix-web-apache-mysql:ubuntu-latest + image: zabbix/zabbix-web-apache-mysql:ubuntu-3.0-latest ports: - "80:80" - "443:443" @@ -217,7 +217,7 @@ services: com.zabbix.os: "ubuntu" zabbix-web-nginx-mysql: - image: zabbix/zabbix-web-nginx-mysql:ubuntu-latest + image: zabbix/zabbix-web-nginx-mysql:ubuntu-3.0-latest ports: - "8081:80" - "8443:443" @@ -268,7 +268,7 @@ services: com.zabbix.os: "ubuntu" zabbix-agent: - image: zabbix/zabbix-agent:ubuntu-latest + image: zabbix/zabbix-agent:ubuntu-3.0-latest ports: - "10050:10050" volumes: @@ -308,7 +308,7 @@ services: com.zabbix.os: "ubuntu" zabbix-java-gateway: - image: zabbix/zabbix-java-gateway:ubuntu-latest + image: zabbix/zabbix-java-gateway:ubuntu-3.0-latest ports: - "10052:10052" deploy: @@ -335,7 +335,7 @@ services: com.zabbix.os: "ubuntu" zabbix-snmptraps: - image: zabbix/zabbix-snmptraps:ubuntu-latest + image: zabbix/zabbix-snmptraps:ubuntu-3.0-latest ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_ubuntu_mysql_local.yaml b/docker-compose_v3_ubuntu_mysql_local.yaml index dedb8bbb3..6f0553d43 100644 --- a/docker-compose_v3_ubuntu_mysql_local.yaml +++ b/docker-compose_v3_ubuntu_mysql_local.yaml @@ -5,7 +5,7 @@ services: context: ./server-mysql/ubuntu cache_from: - ubuntu:trusty - image: zabbix-server-mysql:ubuntu-local + image: zabbix-server-mysql:ubuntu-3.0-local ports: - "10051:10051" volumes: @@ -70,7 +70,7 @@ services: context: ./proxy-sqlite3/ubuntu cache_from: - ubuntu:trusty - image: zabbix-proxy-sqlite3:ubuntu-local + image: zabbix-proxy-sqlite3:ubuntu-3.0-local ports: - "10061:10051" volumes: @@ -125,7 +125,7 @@ services: context: ./proxy-mysql/ubuntu cache_from: - ubuntu:trusty - image: zabbix-proxy-mysql:ubuntu-local + image: zabbix-proxy-mysql:ubuntu-3.0-local ports: - "10071:10051" volumes: @@ -182,7 +182,7 @@ services: context: ./web-apache-mysql/ubuntu cache_from: - ubuntu:trusty - image: zabbix-web-apache-mysql:ubuntu-local + image: zabbix-web-apache-mysql:ubuntu-3.0-local ports: - "80:80" - "443:443" @@ -237,7 +237,7 @@ services: context: ./web-nginx-mysql/ubuntu cache_from: - ubuntu:trusty - image: zabbix-web-nginx-mysql:ubuntu-local + image: zabbix-web-nginx-mysql:ubuntu-3.0-local ports: - "8081:80" - "8443:443" @@ -292,7 +292,7 @@ services: context: ./agent/ubuntu cache_from: - ubuntu:trusty - image: zabbix-agent:ubuntu-local + image: zabbix-agent:ubuntu-3.0-local ports: - "10050:10050" volumes: @@ -336,7 +336,7 @@ services: context: ./java-gateway/ubuntu cache_from: - ubuntu:trusty - image: zabbix-java-gateway:ubuntu-local + image: zabbix-java-gateway:ubuntu-3.0-local ports: - "10052:10052" deploy: @@ -367,7 +367,7 @@ services: context: ./snmptraps/ubuntu cache_from: - ubuntu:trusty - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_ubuntu_pgsql_latest.yaml b/docker-compose_v3_ubuntu_pgsql_latest.yaml index 4f80ce942..2db7520ad 100644 --- a/docker-compose_v3_ubuntu_pgsql_latest.yaml +++ b/docker-compose_v3_ubuntu_pgsql_latest.yaml @@ -1,7 +1,7 @@ version: '3.5' services: zabbix-server: - image: zabbix/zabbix-server-pgsql:ubuntu-latest + image: zabbix/zabbix-server-pgsql:ubuntu-3.0-latest ports: - "10051:10051" volumes: @@ -62,7 +62,7 @@ services: com.zabbix.os: "ubuntu" zabbix-proxy-sqlite3: - image: zabbix/zabbix-proxy-sqlite3:ubuntu-latest + image: zabbix/zabbix-proxy-sqlite3:ubuntu-3.0-latest ports: - "10061:10051" volumes: @@ -113,7 +113,7 @@ services: com.zabbix.os: "ubuntu" zabbix-proxy-mysql: - image: zabbix/zabbix-proxy-mysql:ubuntu-latest + image: zabbix/zabbix-proxy-mysql:ubuntu-3.0-latest ports: - "10071:10051" volumes: @@ -166,7 +166,7 @@ services: com.zabbix.os: "ubuntu" zabbix-web-apache-pgsql: - image: zabbix/zabbix-web-apache-pgsql:ubuntu-latest + image: zabbix/zabbix-web-apache-pgsql:ubuntu-3.0-latest ports: - "80:80" - "443:443" @@ -217,7 +217,7 @@ services: com.zabbix.os: "ubuntu" zabbix-web-nginx-pgsql: - image: zabbix/zabbix-web-nginx-pgsql:ubuntu-latest + image: zabbix/zabbix-web-nginx-pgsql:ubuntu-3.0-latest ports: - "8081:80" - "8443:443" @@ -268,7 +268,7 @@ services: com.zabbix.os: "ubuntu" zabbix-agent: - image: zabbix/zabbix-agent:ubuntu-latest + image: zabbix/zabbix-agent:ubuntu-3.0-latest ports: - "10050:10050" volumes: @@ -308,7 +308,7 @@ services: com.zabbix.os: "ubuntu" zabbix-java-gateway: - image: zabbix/zabbix-java-gateway:ubuntu-latest + image: zabbix/zabbix-java-gateway:ubuntu-3.0-latest ports: - "10052:10052" deploy: @@ -335,7 +335,7 @@ services: com.zabbix.os: "ubuntu" zabbix-snmptraps: - image: zabbix/zabbix-snmptraps:ubuntu-latest + image: zabbix/zabbix-snmptraps:ubuntu-3.0-latest ports: - "162:162/udp" volumes: diff --git a/docker-compose_v3_ubuntu_pgsql_local.yaml b/docker-compose_v3_ubuntu_pgsql_local.yaml index e37181d60..62733a4d5 100644 --- a/docker-compose_v3_ubuntu_pgsql_local.yaml +++ b/docker-compose_v3_ubuntu_pgsql_local.yaml @@ -2,7 +2,7 @@ version: '3.5' services: zabbix-server: build: ./server-pgsql/ubuntu - image: zabbix-server-pgsql:ubuntu-local + image: zabbix-server-pgsql:ubuntu-3.0-local ports: - "10051:10051" volumes: @@ -64,7 +64,7 @@ services: zabbix-proxy-sqlite3: build: ./proxy-sqlite3/ubuntu - image: zabbix-proxy-sqlite3:ubuntu-local + image: zabbix-proxy-sqlite3:ubuntu-3.0-local ports: - "10061:10051" volumes: @@ -116,7 +116,7 @@ services: zabbix-proxy-mysql: build: ./proxy-mysql/ubuntu - image: zabbix-proxy-mysql:ubuntu-local + image: zabbix-proxy-mysql:ubuntu-3.0-local ports: - "10071:10051" volumes: @@ -171,7 +171,7 @@ services: zabbix-web-apache-pgsql: build: ./web-apache-pgsql/ubuntu - image: zabbix-web-apache-pgsql:ubuntu-local + image: zabbix-web-apache-pgsql:ubuntu-3.0-local ports: - "80:80" - "443:443" @@ -223,7 +223,7 @@ services: zabbix-web-nginx-pgsql: build: ./web-nginx-pgsql/ubuntu - image: zabbix-web-nginx-pgsql:ubuntu-local + image: zabbix-web-nginx-pgsql:ubuntu-3.0-local ports: - "8081:80" - "8443:443" @@ -275,7 +275,7 @@ services: zabbix-agent: build: ./agent/ubuntu - image: zabbix-agent:ubuntu-local + image: zabbix-agent:ubuntu-3.0-local ports: - "10050:10050" volumes: @@ -316,7 +316,7 @@ services: zabbix-java-gateway: build: ./java-gateway/ubuntu - image: zabbix-java-gateway:ubuntu-local + image: zabbix-java-gateway:ubuntu-3.0-local ports: - "10052:10052" deploy: @@ -344,7 +344,7 @@ services: zabbix-snmptraps: build: ./snmptraps/ubuntu - image: zabbix-snmptraps:ubuntu-local + image: zabbix-snmptraps:ubuntu-3.0-local ports: - "162:162/udp" volumes: