author | ymh <ymh.work@gmail.com> |
Tue, 07 Mar 2017 15:19:19 +0100 | |
changeset 323 | bdffbceb0730 |
parent 322 | 3a80a07f1300 |
permissions | -rw-r--r-- |
322 | 1 |
version: '3' |
2 |
services: |
|
3 |
db: |
|
4 |
image: postgres |
|
5 |
volumes: |
|
6 |
- ./data/db:/var/lib/postgresql/data |
|
7 |
es: |
|
8 |
image: elasticsearch:alpine |
|
9 |
volumes: |
|
10 |
- ./data/es:/usr/share/elasticsearch/data |
|
11 |
web: |
|
12 |
build: |
|
13 |
context: ../ |
|
14 |
dockerfile: dev/web/Dockerfile |
|
15 |
volumes: |
|
16 |
- ../:/code/platform_web |
|
17 |
- ../../platform/src/ldt:/code/platform |
|
18 |
- ../../hashcut/src:/code/hashcut |
|
19 |
- ../../metadatacomposer/src:/code/metadatacomposer |
|
20 |
ports: |
|
21 |
- "8000:8000" |
|
22 |
depends_on: |
|
23 |
- db |
|
24 |
- es |
|
25 |
|