-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
84 lines (71 loc) · 1.61 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
---
# 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
qgisserver:
extends:
file: docker-compose-lib.yaml
service: qgisserver
volumes_from:
- config:ro
# Single QGIS project files
volumes:
- /data/project/data/:/data
environment:
- QGIS_PROJECT_FILE=
- GEOMAPFISH_ACCESSCONTROL_CONFIG=/etc/qgisserver/accesscontrol_config.yaml
- QGIS_SERVER_LOG_LEVEL=0
- QGIS_DEBUG=1
redis:
extends:
file: docker-compose-lib.yaml
service: redis
geoportal:
extends:
file: docker-compose-lib.yaml
service: geoportal
volumes_from:
- config:ro
volumes:
- /var/sig:/var/sig:ro
environment:
- C2CWSGIUTILS_CONFIG=/app/production.ini
alembic:
extends:
file: docker-compose-lib.yaml
service: alembic
front:
extends:
file: docker-compose-lib.yaml
service: front
volumes_from:
- config:ro
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
# 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