-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
79 lines (73 loc) · 1.68 KB
/
docker-compose.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
services:
app:
image: agapp:latest
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
environment:
- EVENTSTORE_DB_CONNECTION_STRING=esdb://eventstore:2113?tls=false
- MONGO_DB_CONNECTION_STRING=mongodb://mongo:27017
- MONGO_DB_NAME=agap
depends_on:
- eventstore
- mongo
networks:
- app-network
eventstore:
image: eventstore/eventstore:21.10.2-buster-slim
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_ATOM_PUB_OVER_HTTP=true
- EVENTSTORE_LOG_LEVEL=Verbose
ports:
- "2113:2113"
- "1113:1113"
networks:
- app-network
volumes:
- eventstore-data:/var/lib/eventstore
mongo:
image: mongo:latest
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=example
- MONGO_INITDB_DATABASE=agap
ports:
- "27017:27017"
networks:
- app-network
volumes:
- mongo-data:/data/db
mongo-express:
image: mongo-express:latest
environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=root
- ME_CONFIG_MONGODB_ADMINPASSWORD=example
- ME_CONFIG_MONGODB_SERVER=mongo
ports:
- "8081:8081"
depends_on:
- mongo
networks:
- app-network
bank:
build:
context: .
dockerfile: bank.Dockerfile
ports:
- "5000:5000"
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
eventstore-data:
mongo-data: