-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
89 lines (77 loc) · 2.04 KB
/
docker-compose.yaml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
# The project Docker compose file for development.
version: '2'
services:
config:
extends:
file: docker-compose-lib.yaml
service: config
## print:
## extends:
## file: docker-compose-lib.yaml
## service: print
## volumes_from:
## - config:ro
# mapserver:
# extends:
# file: docker-compose-lib.yaml
# service: mapserver
# volumes_from:
# - config:ro
# volumes:
# - /var/sig:/var/sig:ro
qgisserver:
extends:
file: docker-compose-lib.yaml
service: qgisserver
volumes_from:
- config:ro
# Single QGIS project files
environment:
- QGIS_PROJECT_FILE=/etc/qgisserver/project.qgz
- GEOMAPFISH_OGCSERVER=<OGC server name>
# # Multiple QGIS project files
# - QGIS_PROJECT_FILE=
# - GEOMAPFISH_ACCESSCONTROL_CONFIG=/etc/qgisserver/accesscontrol_config.yaml
redis:
extends:
file: docker-compose-lib.yaml
service: redis
# tilecloudchain:
# extends:
# file: docker-compose-lib.yaml
# service: tilecloudchain
# volumes_from:
# - config:ro
#
# tilegeneration_slave:
# extends:
# file: docker-compose-lib.yaml
# service: tilegeneration_slave
# volumes_from:
# - config:ro
geoportal:
extends:
file: docker-compose-lib.yaml
service: geoportal
volumes_from:
- config:ro
volumes:
- /var/sig:/var/sig:ro
# alembic:
# extends:
# file: docker-compose-lib.yaml
# service: alembic
# front:
# extends:
# file: docker-compose-lib.yaml
# service: front
# volumes_from:
# - config:ro
# Rich image for project development with e.-g. vim, tree, awscli, psql, ...
# tools:
# volumes_from:
# - config:rw
# extends:
# file: docker-compose-lib.yaml
# service: tools