-
-
Notifications
You must be signed in to change notification settings - Fork 445
/
docker-compose.yml
48 lines (41 loc) · 1.08 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
# Please note, some of the services can be installed on your machine
version: '2.4'
services:
# If you have MS SQL Server installed locally you can comment this service or bind on different port
mssql:
image: mcr.microsoft.com/mssql/server:2017-latest
container_name: mssql-ef
environment:
ACCEPT_EULA: Y
SA_PASSWORD: Password12!
ports:
- "1433:1433"
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.8.3
container_name: elasticsearch-ef
environment:
- discovery.type=single-node
- ES_JAVA_OPTS=-Xms1g -Xmx1g
ports:
- "9200:9200"
- "9300:9300"
mem_limit: 4g
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: rabbitmq-ef
ports:
- "5672:5672"
- "15672:15672"
eventstore:
image: eventstore/eventstore:release-4.1.3
container_name: eventstore-ef
ports:
- "1113:1113"
- "2113:2113"
postgres:
image: postgres:10
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: Password12!
ports:
- "5432:5432"