-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal-compose.yml
64 lines (61 loc) · 1.25 KB
/
local-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
60
61
62
63
64
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:
- npm
- start
env_file:
- .env
localstack:
image: localstack/localstack-full:latest
volumes:
- ./.localstack:/tmp/localstack
ports:
- "3000:4566"
- "3001:41629"
- "8080:8080"
environment:
- SERVICES=s3,sqs
- DEBUG=1
- DATA_DIR=/tmp/localstack/data
dynamodb:
build: ./Dyna/
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/shard:/home/wolf/shard:rw
depends_on:
dynamodb:
condition: service_healthy
command:
- npm
- start
links:
- "dynamodb:database"
env_file:
- .env