forked from instructure/ftl-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 838 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (38 loc) · 838 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
version: "2"
services:
app:
build: .
links:
- sns:sns
- s3:s3
- statsd:statsd
environment:
NODE_ENV: development
# blank means inject in from my env
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
AWS_REGION: 'us-east-1'
command: ./bin/ftl-engine -c build/test_integration/config.js start
sns:
image: feathj/fake-sns
ports:
- "9292:9292"
environment:
VIRTUAL_HOST: "sns.docker"
s3:
image: lphoward/fake-s3
ports:
- "4569:4569"
environment:
VIRTUAL_HOST: "s3.docker"
statsd:
image: hopsoft/graphite-statsd
ports:
- "8181:80"
- "2003-2004:2003-2004"
- "2023-2024:2023-2024"
- "8125:8125/udp"
- "8126:8126"
environment:
VIRTUAL_HOST: "statsd.docker"
VIRTUAL_PORT: "80"