-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.override.yml
More file actions
43 lines (41 loc) · 891 Bytes
/
compose.override.yml
File metadata and controls
43 lines (41 loc) · 891 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
35
36
37
38
39
40
41
42
43
services:
api:
platform: linux/amd64
build:
target: development
image: mercury-api-dev
volumes:
- ./api/src/:/code/src
- ./api/tests/:/code/tests
env_file:
- .env
ports:
- "5000:5000"
web:
restart: unless-stopped
image: mercury-web-dev
volumes:
- ./web/src:/code/src
build:
target: development
context: ./web
args:
AZURE_CLIENT_ID: $AZURE_CLIENT_ID
AZURE_TENANT_ID: $AZURE_TENANT_ID
AUTH_ENABLED: $AUTH_ENABLED
OAUTH_AUTH_SCOPE: $OAUTH_AUTH_SCOPE
APPLICATIONINSIGHTS_CONNECTION_STRING: $APPLICATIONINSIGHTS_CONNECTION_STRING
stdin_open: true
env_file:
- .env
environment:
- NODE_ENV=development
depends_on:
- api
- nginx
nginx:
build:
target: nginx-dev
attach: false
depends_on:
- api