-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.override.yml
66 lines (62 loc) · 2.13 KB
/
docker-compose.override.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
56
57
58
59
60
61
62
63
64
65
66
version: '3.4'
services:
accounts_api:
environment:
- ASPNETCORE_URLS=http://+:5000
- EVENTSTORE__ADDRESS=http://eventstore:2113
- EVENTSTORE__USERNAME=${EVENTSTORE_USERNAME}
- EVENTSTORE__PASSWORD=${EVENTSTORE_PASSWORD}
- MYSQL__CONNECTIONSTRING=Server=mysql;Port=3307;Database=accounts;Uid=${MYSQL_USER};Pwd=${MYSQL_PASSWORD};
- LOGGING__LOGLEVEL__Default=Information
- LOGGING__LOGLEVEL__Microsoft=Warning
- LOGGING__LOGLEVEL__Microsoft.Hosting.Lifetime=Information
- ALLOWEDHOSTS=*
ports:
- "5000:5000"
volumes:
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
accounts_readmodelsynchronizer:
environment:
- ASPNETCORE_URLS=http://+:5000
- EVENTSTORE__ADDRESS=http://eventstore:2113
- EVENTSTORE__USERNAME=${EVENTSTORE_USERNAME}
- EVENTSTORE__PASSWORD=${EVENTSTORE_PASSWORD}
- MYSQL__CONNECTIONSTRING=Server=mysql;Port=3307;Database=accounts;Uid=${MYSQL_USER};Pwd=${MYSQL_PASSWORD};
- LOGGING__LOGLEVEL__Default=Information
- LOGGING__LOGLEVEL__Microsoft=Warning
- LOGGING__LOGLEVEL__Microsoft.Hosting.Lifetime=Information
ports:
- "5002:5000"
volumes:
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro
mysql:
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=accounts
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_TCP_PORT=3307
ports:
- "3307:3307"
volumes:
- mysql_data:/var/lib/mysql_accounts
eventstore:
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=All
- EVENTSTORE_START_STANDARD_PROJECTIONS=true
- EVENTSTORE_EXT_TCP_PORT=1113
- EVENTSTORE_EXT_HTTP_PORT=2113
- EVENTSTORE_INSECURE=true
- EVENTSTORE_ENABLE_EXTERNAL_TCP=true
- EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true
ports:
- "1113:1113"
- "2113:2113"
volumes:
- type: volume
source: eventstore_volume_data
target: /var/lib/eventstore
- type: volume
source: eventstore_volume_logs
target: /var/log/eventstore