diff --git a/proxy-mysql/alpine/Dockerfile b/proxy-mysql/alpine/Dockerfile index c8041047d..a4f2d9582 100644 --- a/proxy-mysql/alpine/Dockerfile +++ b/proxy-mysql/alpine/Dockerfile @@ -77,6 +77,7 @@ RUN apk add ${APK_FLAGS_DEV} --virtual build-dependencies \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-proxy \ + --enable-agent \ --enable-ipv6 \ # Does not support stable iksemel library # --with-jabber \ diff --git a/proxy-mysql/ubuntu/Dockerfile b/proxy-mysql/ubuntu/Dockerfile index e3d2c8887..12a290817 100644 --- a/proxy-mysql/ubuntu/Dockerfile +++ b/proxy-mysql/ubuntu/Dockerfile @@ -84,6 +84,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-proxy \ + --enable-agent \ --enable-ipv6 \ --with-jabber \ --with-ldap \ diff --git a/proxy-sqlite3/alpine/Dockerfile b/proxy-sqlite3/alpine/Dockerfile index 6a906935f..b100ee199 100644 --- a/proxy-sqlite3/alpine/Dockerfile +++ b/proxy-sqlite3/alpine/Dockerfile @@ -73,6 +73,7 @@ RUN apk add ${APK_FLAGS_DEV} --virtual build-dependencies \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-proxy \ + --enable-agent \ --enable-ipv6 \ # Does not support stable iksemel library # --with-jabber \ diff --git a/proxy-sqlite3/ubuntu/Dockerfile b/proxy-sqlite3/ubuntu/Dockerfile index 6439a196c..56e42f0d1 100644 --- a/proxy-sqlite3/ubuntu/Dockerfile +++ b/proxy-sqlite3/ubuntu/Dockerfile @@ -82,6 +82,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-proxy \ + --enable-agent \ --enable-ipv6 \ --with-jabber \ --with-ldap \ diff --git a/server-mysql/alpine/Dockerfile b/server-mysql/alpine/Dockerfile index f54012c99..0f0ded6e8 100644 --- a/server-mysql/alpine/Dockerfile +++ b/server-mysql/alpine/Dockerfile @@ -78,6 +78,7 @@ RUN apk add ${APK_FLAGS_DEV} --virtual build-dependencies \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-server \ + --enable-agent \ --enable-ipv6 \ # Does not support stable iksemel library # --with-jabber \ diff --git a/server-mysql/ubuntu/Dockerfile b/server-mysql/ubuntu/Dockerfile index a2303cb17..81b9cfcf6 100644 --- a/server-mysql/ubuntu/Dockerfile +++ b/server-mysql/ubuntu/Dockerfile @@ -85,6 +85,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-server \ + --enable-agent \ --enable-ipv6 \ --with-jabber \ --with-ldap \ diff --git a/server-pgsql/alpine/Dockerfile b/server-pgsql/alpine/Dockerfile index 19e9643b5..c22f33a70 100644 --- a/server-pgsql/alpine/Dockerfile +++ b/server-pgsql/alpine/Dockerfile @@ -78,6 +78,7 @@ RUN apk add ${APK_FLAGS_DEV} --virtual build-dependencies \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-server \ + --enable-agent \ --enable-ipv6 \ # Does not support stable iksemel library # --with-jabber \ diff --git a/server-pgsql/ubuntu/Dockerfile b/server-pgsql/ubuntu/Dockerfile index 971c0d4dd..843b58baa 100644 --- a/server-pgsql/ubuntu/Dockerfile +++ b/server-pgsql/ubuntu/Dockerfile @@ -85,6 +85,7 @@ RUN apt-get ${APT_FLAGS_COMMON} update && \ --libdir=/usr/lib/zabbix \ --datadir=/usr/lib \ --enable-server \ + --enable-agent \ --enable-ipv6 \ --with-jabber \ --with-ldap \