-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (55 loc) · 1.03 KB
/
docker-compose.yml
File metadata and controls
60 lines (55 loc) · 1.03 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
57
58
59
60
version: '3.1'
networks:
main:
services:
oni-express:
environment:
- NODE_ENV=development
build: .
ports:
- "8080:8080"
expose:
- "80"
networks:
- main
volumes:
- "./ocfl/:/etc/share/ocfl"
- "./config/:/etc/share/config"
# Oni-Indexer currently using a build branch matching oni-express
# place it under ../oni-indexer
oni-indexer:
image: oni-indexer:latest
build: ../oni-indexer
ports:
- "8090:8090"
expose:
- "8090"
networks:
- main
volumes:
- "./ocfl/:/etc/share/ocfl"
- "./config/:/etc/share/config"
- "./logs/:/etc/share/logs"
solr:
image: solr:8.6.3
environment:
- SOLR_HEAP=1024m
ports:
- "8983:8983"
expose:
- "8983"
networks:
- main
volumes:
- "./solr/:/var/solr/data"
command: solr-precreate ocfl
logging:
driver: none
memcached:
image: memcached
ports:
- "11211:11211"
expose:
- "11211"
networks:
- main