-
Notifications
You must be signed in to change notification settings - Fork 17
/
docker-compose.yaml
51 lines (51 loc) · 1.16 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
version: '3'
services:
base:
image: auth-janitor
build:
context: ./src
dockerfile: Dockerfile
args:
ENVIRONMENT: DEBUG
storage:
image: mcr.microsoft.com/azure-storage/azurite
api-host:
build:
context: .docker/FunctionsHost
dockerfile: Dockerfile
args:
ENVIRONMENT: DEBUG
APP_ROOT: AuthJanitor.Functions.AdminApi
depends_on:
- base
- storage
environment:
STORAGE_WEB_URL: UNKNOWN_STORAGE_URL
SENDGRID_API_KEY: UNKNOWN_SENDGRID_KEY
CLIENT_ID: UNKNOWN_CLIENT_ID
CLIENT_SECRET: UNKNOWN_CLIENT_SECRET
TENANT_ID: UNKNOWN_TENANT_ID
agent-host:
build:
context: .docker/FunctionsHost
dockerfile: Dockerfile
args:
ENVIRONMENT: DEBUG
APP_ROOT: AuthJanitor.Functions.Agent
depends_on:
- base
- storage
environment:
SENDGRID_API_KEY: UNKNOWN
ui:
build:
context: .docker/UI
dockerfile: Dockerfile
args:
ENVIRONMENT: DEBUG
APP_ROOT: AuthJanitor.AspNet.AdminUi
ports:
- 8000:80
depends_on:
- base
- api-host