-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.db-only.yml
More file actions
34 lines (32 loc) · 964 Bytes
/
docker-compose.db-only.yml
File metadata and controls
34 lines (32 loc) · 964 Bytes
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
version: "1"
services:
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