-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (49 loc) · 901 Bytes
/
docker-compose.yml
File metadata and controls
55 lines (49 loc) · 901 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
43
44
45
46
47
48
49
50
51
52
53
54
55
version: "3"
services:
ckan:
build:
context: ckan/
dockerfile: Dockerfile
args:
- TZ=${TZ}
env_file:
- .env
links:
- db
- solr
- datapusher
- redis
ports:
- "0.0.0.0:${CKAN_PORT}:5000"
volumes:
- .:/srv/app/src_extensions/ckanext-iaea
- ckan_storage:/var/lib/ckan
datapusher:
container_name: datapusher
build:
context: datapusher/
ports:
- "8800:8800"
db:
container_name: db
env_file:
- .env
build:
context: postgresql/
volumes:
- pg_data:/var/lib/postgresql/data
solr:
container_name: solr
build:
context: solr/
ports:
- "8983:8983"
volumes:
- solr_data:/opt/solr/server/solr/ckan/data/index
redis:
container_name: redis
image: redis:alpine
volumes:
ckan_storage:
pg_data:
solr_data: