-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (61 loc) · 1.4 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
# Use postgres/example user/password credentials
version: '3.7'
volumes:
solr:
db:
storage:
iiif:
services:
db:
image: postgres:14
volumes:
- db:/var/lib/postgresql/data/pgdata
restart: always
environment:
PGDATA: /var/lib/postgresql/data/pgdata
POSTGRES_PASSWORD: example
ports:
- 5432:5432
web:
image: nakatomi/cerberus_web
entrypoint: /home/cerberus/web/docker-entrypoint.sh
environment:
ATLAS_URL: 'http://atlas:3000/'
ports:
- 3000:3000
atlas:
image: nakatomi/atlas_web:${ATLAS}
entrypoint: /home/atlas/web/docker-entrypoint.sh
ports:
- 3001:3000
atlas-test:
image: nakatomi/atlas_web:${ATLAS}
entrypoint: /home/atlas/web/docker-entrypoint.sh
environment:
RAILS_ENV: 'test'
ports:
- 3002:3000
iiif:
image: uclalibrary/cantaloupe:5.0.6-2
ports:
- 8182:8182
environment:
CANTALOUPE_PROCESSOR_MANUALSELECTIONSTRATEGY_JP2: 'OpenJpegProcessor'
CANTALOUPE_PROCESSOR_SELECTION_STRATEGY: 'ManualSelectionStrategy'
CANTALOUPE_CACHE_CLIENT_ENABLED: 'true'
solr:
image: nakatomi/blacklight-solr
ports:
- 8983:8983
volumes:
- solr:/var/solr/data/blacklight-core/data
healthcheck:
test:
- CMD
- wget
- "-O"
- "/dev/null"
- http://localhost:8983/solr/
interval: 30s
timeout: 5s
retries: 3