postgres-es 0.5.0

A Postgres implementation of an event repository for cqrs-es.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
services:
  db:
    image: postgres
    restart: always
    ports:
      - 5432:5432
    environment:
      POSTGRES_DB: test
      POSTGRES_USER: test_user
      POSTGRES_PASSWORD: test_pass
    volumes:
      - './db:/docker-entrypoint-initdb.d'