-
Notifications
You must be signed in to change notification settings - Fork 270
/
docker-compose.e2e.yml
72 lines (62 loc) · 1.68 KB
/
docker-compose.e2e.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
services:
postgres:
environment:
POSTGRES_DB: aleph_e2e
volumes:
- postgres-data-e2e:/var/lib/postgresql/data
elasticsearch:
volumes:
- elasticsearch-data-e2e:/usr/share/elasticsearch/data
redis:
volumes:
- redis-data-e2e:/data
rabbitmq:
volumes:
- rabbitmq-data-e2e:/var/lib/rabbitmq
api:
volumes:
- archive-data-e2e:/data
environment:
ALEPH_SINGLE_USER: "false"
ALEPH_DATABASE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
APP_NAME: "aleph-e2e"
FTM_STORE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
app:
volumes:
- archive-data-e2e:/data
environment:
ALEPH_SINGLE_USER: "false"
ALEPH_DATABASE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
APP_NAME: "aleph-e2e"
FTM_STORE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
ingest-file:
volumes:
- archive-data-e2e:/data
environment:
ALEPH_DATABASE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
FTM_STORE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
ui:
environment:
ALEPH_SINGLE_USER: "false"
DANGEROUSLY_DISABLE_HOST_CHECK: "true"
e2e:
build:
context: e2e
environment:
BASE_URL: "http://ui:8080"
volumes:
- "./e2e:/e2e"
worker:
volumes:
- archive-data-e2e:/data
environment:
ALEPH_DATABASE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
APP_NAME: "aleph-e2e"
FTM_STORE_URI: "postgresql://aleph:aleph@postgres/aleph_e2e"
PROMETHEUS_ENABLE: False
volumes:
archive-data-e2e: {}
elasticsearch-data-e2e: {}
postgres-data-e2e: {}
redis-data-e2e: {}
rabbitmq-data-e2e: {}