chekov 0.1.1

CQRS/ES Framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: "3"

services:

  postgres:
    image: postgres:13-beta1-alpine
    environment:
      # POSTGRES_DB: event_store
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
      # POSTGRES_HOST_AUTH_METHOD: scram-sha-256
      # POSTGRES_INITDB_ARGS: --auth-host=scram-sha-256
    volumes:
      - "./postgres/:/docker-entrypoint-initdb.d/"