-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm1-inspect-compose.yml
59 lines (57 loc) · 1.17 KB
/
m1-inspect-compose.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
version: "3.8"
services:
heimdallr:
build: ./HeimdallrNode/
volumes:
- ./HeimdallrNode:/home/node/heimdallr
- /home/node/heimdallr/node_modules
- ~/.aws/:/root/.aws:ro
ports:
- "5000:5000"
- "9229:9229"
depends_on:
- dynamodb
links:
- "dynamodb:database"
command:
- npx
- nodemon
- "--inspect-brk=0.0.0.0"
- "."
env_file:
- .env
dynamodb:
build:
context: ./Dyna/
dockerfile: ARMyfile
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000"]
interval: 30s
timeout: 10s
retries: 5
ports:
- "8000:8000"
environment:
- TZ=Asia/Singapore
wolfsmoke:
build:
context: ./WolfSmoke
dockerfile: Dockerfile
target: builder
volumes:
- ./WolfSmoke/src:/home/wolf/src/
- ./WolfSmoke/nodemon.json:/home/wolf/nodemon.json
- ./WolfSmoke/shard:/home/wolf/shard:rw
ports:
- "9222:9222"
depends_on:
dynamodb:
condition: service_healthy
links:
- "dynamodb:database"
command:
- npx
- nodemon
- "src/index.ts"
env_file:
- .env