This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
forked from cvast/cvast-arches
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
76 lines (71 loc) · 1.72 KB
/
docker-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
65
66
67
68
69
70
71
72
73
74
75
76
version: '2'
services:
arches:
container_name: arches
restart: always
image: cvast/cvast-arches:latest
build:
context: .
dockerfile: ./Dockerfile
volumes:
- arches-log:/arches/arches/logs
- arches-static:/static_root
- arches-uploadedfiles:/web_root/arches/arches/uploadedfiles
environment:
- ARCHES_PROJECT=cvast_arches
- INSTALL_DEFAULT_GRAPHS=False
- INSTALL_DEFAULT_CONCEPTS=False
- PGPASSWORD=
- PGDBNAME=arches
- PGHOST=db
- PGPORT=5432
- ESHOST=elasticsearch
- ESPORT=9200
- DJANGO_MODE=DEV
- DJANGO_DEBUG=True
- DOMAIN_NAMES=localhost
- TZ=EST
ports:
- '81:8000'
depends_on:
- db
- elasticsearch
db:
container_name: db
restart: always
image: mdillon/postgis:9.6
volumes:
- postgres-data:/var/lib/postgresql/data
- postgres-log:/var/log/postgresql
ports:
- '5432:5432'
environment:
- POSTGRES_PASSWORD=
- TZ=EST
elasticsearch:
container_name: elasticsearch
restart: always
image: elasticsearch:5.2
volumes:
- elasticsearch-config:/usr/share/elasticsearch/config
- elasticsearch-data:/usr/share/elasticsearch/data
ports:
- "9200:9200"
- "9300:9300"
environment:
- TZ=EST
volumes:
arches-log:
arches-static:
arches-uploadedfiles:
arches-virtualenv:
postgres-data:
postgres-log:
elasticsearch-data:
elasticsearch-config:
nginx-root:
nginx-conf:
nginx-logs:
letsencrypt-workdir:
letsencrypt-config:
letsencrypt-log: