skip to Main Content

How to use a JSON String inside a docker-compose.yml file

I always get this error yaml: line XX: mapping values are not allowed in this context this is the part of my yaml file (for zabbix) web-nginx: image: 'zabbix/zabbix-web-nginx-pgsql:alpine-trunk' restart: unless-stopped tty: true environment: ZBX_SERVER_HOST=xxx DB_SERVER_HOST=xxx POSTGRES_USER=xxx POSTGRES_PASSWORD=xxx POSTGRES_DB=xxx PHP_TZ=xxx…

VIEW QUESTION

Zabbix server docker does not connect to zabbix agent and vice versa – Nginx

This is my docker-compose file: version: "3.7" services: zookeeper: image: 'confluentinc/cp-zookeeper:latest' container_name: pooyesh-zookeeper ports: - 2181:2181 env_file: - zookeeper.env kafka: image: 'confluentinc/cp-kafka:latest' container_name: pooyesh-kafka env_file: - kafka.env ports: - 9093:9093 depends_on: - zookeeper postgres: image: 'postgres:latest' container_name: pooyesh-postgres env_file: -…

VIEW QUESTION

Compiling Zabbix 5.2 with libxml2 support – Debian

I have problem compiling Zabbix 5.2 configured this way: # ./configure --enable-server --enable-agent --with-net-snmp --with-libcurl --with-libxml2 --with-postgresql --with-prefix=/usr/local/zabbix5 --verbose ... checking for PostgreSQL libraries... yes checking if PostgreSQL version is >= 9.2... yes checking for Zabbix server/proxy database selection... ok…

VIEW QUESTION
Back To Top
Search