System OS version is Amazon linux 2
If I start a docker conntainer of zabbix agent 2, it is starting with NetworkDisabled: true
Because there is not networking, container mapping fails.
I am new to docker and using the following command to create docker container
docker run --name zabbix-agent2 -p 10050:10050 -v "/var/run/docker.sock:/var/run/docker.sock" -e ZBX_HOSTNAME="XXXXXX" -e ZBX_SERVER_HOST="XXX.XX.X.XXX" --privileged -e ZBX_TIMEOUT=15 -e ZBX_DEBUGLEVEL=3 -d zabbix/zabbix-agent2:alpine-5.0.4
"Entrypoint": [
"/sbin/tini",
"--",
"/usr/bin/docker-entrypoint.sh"
],
"NetworkDisabled": true,
"OnBuild": null,
If I start a docker conntainer of zabbix agent 2, it is starting with NetworkDisabled: true
Because there is not networking, container mapping fails.
I am new to docker and using the following command to create docker container
docker run --name zabbix-agent2 -p 10050:10050 -v "/var/run/docker.sock:/var/run/docker.sock" -e ZBX_HOSTNAME="XXXXXX" -e ZBX_SERVER_HOST="XXX.XX.X.XXX" --privileged -e ZBX_TIMEOUT=15 -e ZBX_DEBUGLEVEL=3 -d zabbix/zabbix-agent2:alpine-5.0.4
"Entrypoint": [
"/sbin/tini",
"--",
"/usr/bin/docker-entrypoint.sh"
],
"NetworkDisabled": true,
"OnBuild": null,
Comment