-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (52 loc) · 1.05 KB
/
docker-compose.yml
File metadata and controls
56 lines (52 loc) · 1.05 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
volumes:
redis:
services:
web:
restart: always
build:
context: .
dockerfile: ./docker-emlo/Dockerfile-flask
env_file:
- .env
expose:
- "5000"
ports:
- 5000:5000
command: bash -c "/bin/docker-entrypoint.sh"
solr:
build: ./docker-emlo/solr-conf
restart: always
environment:
SOLR_LOG_LEVEL: INFO
LD_BIND_NOW: 1
ports:
- "8983:8983"
volumes:
- ./docker-emlo/solr-conf/solr/home:/opt/solr/server/solr/home
- ./docker-emlo/solr-data:/data-solr
ulimits:
nofile:
soft: "65536"
hard: "65536"
redis:
image: redis:6
command: redis-server --appendonly yes
expose:
- 6379
ports:
- 6379:6379
volumes:
- redis:/data
logging:
options:
max-size: "10m"
max-file: "3"
indexer:
build:
context: indexer
dockerfile: Dockerfile-indexer
env_file:
- .env
command: bash -c "/data/index.sh"
volumes:
- ${CSV_FOLDER_IMPORT_PATH}:/data/csv_import_files