mysql-es 0.3.2

A MySql implementation of an event repository for cqrs-es.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: '3.1'

services:
  db:
    image: mysql
    restart: always
    ports:
      - 3306:3306
    environment:
      MYSQL_ROOT_PASSWORD: rootpw
      MYSQL_DATABASE: test
      MYSQL_USER: test_user
      MYSQL_PASSWORD: test_pass
    volumes:
      - './db:/docker-entrypoint-initdb.d'