version: '2.4' services: eventstore: image: eventstore/eventstore:release-4.1.3 container_name: "cqrs4j-quarkus-example-eventstore" ports: - "1113:1113" - "2113:2113" networks: - cqrs4j-quarkus-example-net # jkmq-postgres: # image: postgres:11.0 # container_name: "cqrs4j-quarkus-example-postgres" # ports: # - "5432:5432" # environment: # - POSTGRES_DB=querydb # - POSTGRES_USER=postgres # - POSTGRES_PASSWORD=abc # networks: # - cqrs4j-quarkus-example-net mariadb: image: mariadb:10.4 container_name: "cqrs4j-quarkus-example-mariadb" environment: MYSQL_ROOT_PASSWORD: xyz MYSQL_DATABASE: querydb MYSQL_USER: mary MYSQL_PASSWORD: abc MYSQL_INITDB_SKIP_TZINFO: 1 ports: - "3306:3306" networks: - cqrs4j-quarkus-example-net networks: cqrs4j-quarkus-example-net: name: cqrs4j-quarkus-example-net