-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdocker-compose.swarm.yml
132 lines (126 loc) · 3.89 KB
/
docker-compose.swarm.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
version: '3.3'
services:
# ###########################################################################
# The GCpedia container. Will be accessible at http://wiki.collab.test
# ###########################################################################
gcpedia:
image: phanoix/gcpedia
ports:
- 80:80
- 443:443
volumes:
- type: volume
source: gcpedia_images
target: /var/www/html/docker_gcpedia/images
networks:
- gcpedia-services
deploy:
replicas: 1
resources:
# limits:
# cpus: '6'
reservations:
cpus: '0.4'
memory: 250M
# use this if gcpedia has already been installed and LocalSettings.php config created, safer to just do this manually with the docker service update command provided
# docker service update --config-add source=LocalSettings.php,target=/var/www/html/docker_gcpedia/LocalSettings.php,mode=0444 wiki
# configs:
# - source: LocalSettings.php
# target: /var/www/html/docker_gcpedia/LocalSettings.php
# mode: 0444
# docker service update --config-add source=htaccess,target=/var/www/html/docker_gcpedia/.htaccess,mode=0444 wiki
# configs:
# - source: htaccess
# target: /var/www/html/docker_gcpedia/.htaccess
# mode: 0444
# docker service update --secret-add source=wikiSecrets,target=/super/secrets.php,mode=0440 wiki
# secrets:
# - source: wikiSecrets
# target: /super/secrets.php
# mode: 0440
environment:
- DOCKER=1
- DBHOST=gcpedia-db
- HOST=wiki.gccollab.test
- PORT=
- OPENID=true
# - OAUTH=true
# for single signon with GCconnex
# - USESAML=true
# ###########################################################################
# The parsoid container for the VisualEditor.
# Will be available to gcpedia at parsoid:8142
# ###########################################################################
parsoid:
image: phanoix/parsoid
networks:
- gcpedia-services
deploy:
replicas: 1
resources:
limits:
cpus: '0.5'
memory: 250M
reservations:
cpus: '0.1'
memory: 50M
# ###########################################################################
# The Electron render service container for the ElectronPdfService Extension.
# Will be available to gcpedia at elec-render:3000
# ###########################################################################
elec-render:
image: msokk/electron-render-service
networks:
- gcpedia-services
ports:
- 3000:3000
environment:
# blank HOSTNAME is needed for swarm mode, everything else is showing defaults
- RENDERER_ACCESS_KEY=secret
- HOSTNAME=
- CONCURRENCY=1
- TIMEOUT=30
- WINDOW_WIDTH=1024
- WINDOW_HEIGHT=768
- PORT=3000
deploy:
replicas: 1
resources:
limits:
cpus: '0.5'
memory: 250M
reservations:
cpus: '0.1'
memory: 50M
# ###########################################################################
# Database container for gcpedia, accessible from by the gcpedia container
# using the network host "gcpedia-db".
# ###########################################################################
gcpedia-db:
image: library/mariadb:10.3
volumes:
- type: volume
source: gcpedia_db
target: /var/lib/mysql
networks:
- gcpedia-services
deploy:
replicas: 1
resources:
# limits:
# cpus: '6'
reservations:
cpus: '0.2'
memory: 500M
environment:
- MYSQL_ROOT_PASSWORD=gcpedia
- MYSQL_DATABASE=wiki
- MYSQL_USER=wiki
- MYSQL_PASSWORD=gcpedia
volumes:
gcpedia_db:
gcpedia_images:
networks:
gcpedia-services:
driver: overlay
internal: true