skip to Main Content

Docker Compose: depends_on with condition -> invalid type, should be an array

I have the following compose file: version: "3" services: zookeeper: image: docker-dev.art.intern/wurstmeister/zookeeper:latest ports: - 2181:2181 kafka: image: docker-dev.art.intern/wurstmeister/kafka:latest ports: - 9092:9092 environment: - KAFKA_LISTENERS=PLAINTEXT://:9092 - KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092 - KAFKA_ADVERTISED_HOST_NAME=kafka - KAFKA_ADVERTISED_PORT=9092 - KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181 depends_on: - zookeeper app: build: context: ./ dockerfile:…

VIEW QUESTION

rundeck configuration email notifications job in docker

I'd like to configure an email notification for a job done in rundeck with docker. I've this docker-compose.yaml and but it doesn't work. version: '3' services: rundeck: image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT} links: - postgres environment: RUNDECK_DATABASE_DRIVER: org.postgresql.Driver RUNDECK_DATABASE_USERNAME: rundeck RUNDECK_DATABASE_PASSWORD: rundeck RUNDECK_DATABASE_URL:…

VIEW QUESTION
Back To Top
Search