-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
55 lines (50 loc) · 1.51 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: "3"
services:
eventstore-source:
build:
context: ./docker-setup/eventstore
dockerfile: Dockerfile
container_name: ditto-es-source
environment:
- EVENTSTORE_START_STANDARD_PROJECTIONS=TRUE
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_MEM_DB=true
- SEED_DATA=true
ports:
- "1113:1113"
- "2113:2113"
eventstore-dest:
image: eventstore/eventstore:release-5.0.8
container_name: ditto-es-dest
# http://docs.geteventstore.com/server/4.0.0/command-line-arguments/
environment:
- EVENTSTORE_START_STANDARD_PROJECTIONS=TRUE
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_MEM_DB=true
- EVENTSTORE_EXT_TCP_PORT=3113
- EVENTSTORE_EXT_HTTP_PORT=4113
- EVENTSTORE_EXT_HTTP_PREFIXES=http://*:4113/
ports:
- "3113:3113"
- "4113:4113"
localstack:
image: localstack/localstack
container_name: ditto-localstack
ports:
- "4566-4599:4566-4599" # ports of the different services
- "8080:8080"
environment:
- SERVICES=kinesis # a list of desired services you want to use.
- DEFAULT_REGION=eu-west-1 # This is the region where your localstack mocks to be running
- DATA_DIR=/tmp/localstack/data
- LAMBDA_EXECUTOR=local
- KINESIS_ERROR_PROBABILITY=0.5
volumes:
- ./docker-setup/localstack/:/docker-entrypoint-initaws.d/
seq:
image: datalust/seq:latest
container_name: ditto-seq
environment:
- ACCEPT_EULA=Y
ports:
- 5341:80