-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (39 loc) · 969 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (39 loc) · 969 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
version: '3'
volumes:
ndtp-geoserver-data:
services:
db:
container_name: ndtp-db
restart: always
image: gaia3d/postgres:ndtp
# build:
# context: ./doc/docker/postgres
# dockerfile: Dockerfile
volumes:
- ./doc/database:/database:ro
- ./init-user-db.sh:/docker-entrypoint-initdb.d/init-user-db.sh:ro
# district
- ./restore_district.sh:/docker-entrypoint-initdb.d/zestore-dist.sh:ro
ports:
- 15432:5432
geoserver:
container_name: ndtp-geoserver
restart: always
image: gaia3d/geoserver:ndtp
# build:
# context: ./doc/docker/geoserver
# dockerfile: Dockerfile
volumes:
- /D/geoserver-data:/geoserver-data
ports:
- 18080:8080
rabbitmq:
container_name: ndtp-rabbitmq
restart: always
image: gaia3d/rabbitmq:ndtp
# build:
# context: ./doc/docker/rabbitmq
# dockerfile: Dockerfile
ports:
- 5672:5672
- 15672:15672