-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
41 lines (37 loc) · 1.31 KB
/
docker-compose.yaml
File metadata and controls
41 lines (37 loc) · 1.31 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
services:
azurite:
image: mcr.microsoft.com/azure-storage/azurite:latest
container_name: azurite
restart: always
# azurite has entrypoint = "docker-entrypoint.sh" with a cmd = ["azurite", ...]
# We've overridden command to disable telemetry and go slient because of the noise that it produces.
command: ["azurite", "-l", "/data", "--tableHost", "0.0.0.0", "--disableTelemetry", "--silent"]
bankserver1:
image: ${ANTITHESIS_REGISTRY}/orleans-bank-test/bankserver:latest
build:
dockerfile: Dockerfile.server
container_name: bankserver1
restart: always
depends_on:
- azurite
bankserver2:
image: ${ANTITHESIS_REGISTRY}/orleans-bank-test/bankserver:latest
container_name: bankserver2
restart: always
depends_on:
- azurite
bankclient:
image: ${ANTITHESIS_REGISTRY}/orleans-bank-test/bankclient:latest
build:
dockerfile: Dockerfile.client
container_name: bankclient
restart: always
depends_on:
- bankserver1
- bankserver2
config:
image: ${ANTITHESIS_REGISTRY}/orleans-bank-test/config:latest
build:
dockerfile: Dockerfile.config
profiles:
- config