skip to Main Content

service.volumes must be mapping in docker

This is a docker-compose.yml file. When I am running the docker-compose-up command it will through an error. looks like **services. volumes must be a mapping ** ` version: '3.9' services: zookeeper: container_name: zookeeper image: wurstmeister/zookeeper ports: - '2181:2181' kafka: container_name:…

VIEW QUESTION

Postgresql – Keycloak Postgres docker connection failure

I am trying to get up the keycloak instance via using keycloak, and the compose file I used is below which I get it from https://github.com/keycloak/keycloak-containers/blob/main/docker-compose-examples/keycloak-postgres.yml # keycloak dependencies postgres-keycloak: image: postgres volumes: - postgres_data:/var/lib/postgresql/data environment: POSTGRES_DB: keycloak POSTGRES_USER: keycloak…

VIEW QUESTION
Back To Top
Search