-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 1.11 KB
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
version: "1"
services:
webapp:
build: .
image: eamsdev/miniess
container_name: miniess
ports:
- '8090:80'
networks:
- miniess-net
esdb:
image: eventstore/eventstore:21.10.1-buster-slim
container_name: docker_esdb
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_START_STANDARD_PROJECTIONS=true
- EVENTSTORE_EXT_TCP_PORT=1113
- EVENTSTORE_HTTP_PORT=2113
- EVENTSTORE_INSECURE=true
- EVENTSTORE_ENABLE_EXTERNAL_TCP=true
- EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true
ports:
- '1113:1113'
- '2113:2113'
networks:
- miniess-net
sqlserver:
image: "mcr.microsoft.com/mssql/server"
container_name: docker_sqlserver
environment:
SA_PASSWORD: "password_123"
ACCEPT_EULA: "Y"
networks:
- miniess-net
ports:
- '1492:1433'
networks:
miniess-net:
driver: bridge