-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
47 lines (46 loc) · 1.03 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
services:
nginx:
image: nginx:latest
ports:
- "8080:8080"
- "8081:8081"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
solr:
build: "solr"
ports:
- "8983:8983"
mapserver:
image: registry.gitlab.ceh.ac.uk/eip/mapserver:2
ports:
- "9000:80"
volumes:
- mapfiles:/mapserver/maps
- ./fixtures/mapserver-data:/mapserver/data
db:
image: postgres:14.1-alpine
environment:
POSTGRES_PASSWORD: &db_password cabbages
POSTGRES_USER: &db_user gardener
POSTGRES_DB: hubbub
ports:
- "5432:5432"
profiles: [hubbub]
hubbub:
image: registry.gitlab.ceh.ac.uk/eip/hubbub:7.7.0
depends_on:
- db
environment:
DB_HOST: db
DB_PASSWORD: *db_password
DB_USER: *db_user
ports:
- '8082:8080'
volumes:
- dropbox:/mnt/dropbox
- ./fixtures/upload/eidchub:/mnt/eidchub
- ./fixtures/upload/supporting-documents:/mnt/supporting-documents
profiles: [hubbub]
volumes:
dropbox:
mapfiles: