forked from alkem-io/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.debug.yml
More file actions
50 lines (48 loc) · 1.12 KB
/
docker-compose.debug.yml
File metadata and controls
50 lines (48 loc) · 1.12 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
42
43
44
45
46
47
48
49
50
version: '3.4'
networks:
ct:
services:
server.node:
container_name: ct_server
image: server.node
build: .
networks:
- ct
environment:
- DATABASE_HOST
- MYSQL_ROOT_PASSWORD
- MYSQL_DATABASE
- WAIT_HOSTS
- WAIT_HOSTS_TIMEOUT
- WAIT_SLEEP_INTERVAL
- WAIT_HOST_CONNECT_TIMEOUT
- GRAPHQL_ENDPOINT_PORT
- AUTH_AAD_CHERRYTWIST_API_APP_ID
- AUTH_AAD_LOGGING_PII
- AUTH_AAD_LOGGING_LEVEL
- AUTH_AAD_MSGRAPH_API_SECRET
- AUTH_AAD_MSGRAPH_API_SCOPE
- AUTH_AAD_UPN_DOMAIN
- AUTH_AAD_TENANT
- AUTH_ENABLED
- AUTH_AAD_CLIENT_APP_ID
- AUTH_AAD_CHERRYTWIST_API_SCOPE
- AUTH_AAD_CLIENT_LOGIN_REDIRECT_URI
depends_on:
- db
restart: always
ports:
- 4000:4000
- 9330:9330
command: sh -c "/wait && npm run migration:run && npm --inspect=0.0.0.0:9330 start"
db:
image: mysql:8.0.11
networks:
- ct
command: --default-authentication-plugin=mysql_native_password
restart: always
ports:
- 3306
environment:
- MYSQL_ROOT_PASSWORD
- MYSQL_DATABASE