-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbehave.yml
More file actions
63 lines (58 loc) · 1.23 KB
/
behave.yml
File metadata and controls
63 lines (58 loc) · 1.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '2'
services:
acropolis-bdd:
image: acropolis-bdd
container_name: acropolis-bdd
entrypoint:
- docker/init_db.sh
environment:
- ACROPOLIS_HOSTNAME=localhost
command: supervisord
build:
context: .
dockerfile: Dockerfile
depends_on:
- postgres
- fourstore
- s3
links:
- postgres
- fourstore
- s3
expose:
- "80"
- "8000"
ports:
- 80:80
- 8000:8000
# behave:
# container_name: behave
# command: behave
# #features/partitions.feature
# environment:
# - ACROPOLIS_HOSTNAME=acropolis.localhost
# build:
# context: .
# dockerfile: Dockerfile-behave
# depends_on:
# - acropolis-bdd
# links:
# - acropolis-bdd:acropolis.localhost
# DB used to store the indexes
postgres:
image: postgres:9.1
ports:
- 5432:5432
# Tstore for the output of twine-anansi and the command line client twine
fourstore:
image: cgueret/4store
ports:
- 9000:9000
# S3 used to cache objects from Anansi and data processing output from Spindle
s3:
image: lphoward/fake-s3
expose:
- 80
command: -r /fakes3_root -p 80
ports:
- 8080:80