-
Notifications
You must be signed in to change notification settings - Fork 7
/
compose.override.yaml.example
223 lines (204 loc) · 5.47 KB
/
compose.override.yaml.example
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
version: "3.6"
services:
groupoffice:
ports:
- "80:80"
- "443:443"
environment:
MYSQL_DATABASE: groupoffice
# for profiling set and enable the bind mount above:
#XDEBUG_MODE: "profile"
groupoffice-63:
build:
context: ./groupoffice
dockerfile: sixsix.Dockerfile
restart: always
ports:
- "63:443"
- "6380:80"
links:
- db
volumes:
- /Volumes/Projects/docker-groupoffice-development/src/63:/usr/local/share/src:delegated
- "godata_63:/var/lib/groupoffice"
- "goetc_63:/etc/groupoffice/multi_instance"
- ./groupoffice/etc/groupoffice/globalconfig.inc.php:/etc/groupoffice/globalconfig.inc.php:delegated
env_file:
- ./db.env
environment:
MYSQL_DATABASE: groupoffice_63
PHP_IDE_CONFIG: "serverName=localhost" #for PHPStorm path mappings in Preferences -> PHP -> Servers
working_dir: /usr/local/share/src
groupoffice-64:
build:
context: ./groupoffice
dockerfile: sixsix.Dockerfile
restart: always
ports:
- "6443:443"
- "6480:80"
- "80:80"
links:
- db
volumes:
- /Volumes/Projects/docker-groupoffice-development/src/64:/usr/local/share/src:delegated
- "godata_64:/var/lib/groupoffice"
- "webgrind:/tmp/webgrind"
- "goetc_64:/etc/groupoffice/multi_instance"
- ./groupoffice/etc/groupoffice/globalconfig.inc.php:/etc/groupoffice/globalconfig.inc.php:delegated
- lo_config_volume:/etc/loolwsd
env_file:
- ./db.env
environment:
XDEBUG_CONFIG: "profiler_output_dir=/tmp/webgrind"
MYSQL_DATABASE: groupoffice_64
PHP_IDE_CONFIG: "serverName=localhost" #for PHPStorm path mappings in Preferences -> PHP -> Servers
working_dir: /usr/local/share/src
groupoffice-65:
build:
context: ./groupoffice
dockerfile: sixsix.Dockerfile
restart: always
ports:
- "6543:443"
- "6580:80"
links:
- db
volumes:
- /Volumes/Projects/docker-groupoffice-development/src/65:/usr/local/share/src:delegated
- "godata_65:/var/lib/groupoffice"
- "webgrind:/tmp/webgrind"
- "goetc_65:/etc/groupoffice/multi_instance"
- ./groupoffice/etc/groupoffice/globalconfig.inc.php:/etc/groupoffice/globalconfig.inc.php:delegated
- lo_config_volume:/etc/loolwsd
env_file:
- ./db.env
environment:
XDEBUG_CONFIG: "profiler_output_dir=/tmp/webgrind"
MYSQL_DATABASE: groupoffice_65
PHP_IDE_CONFIG: "serverName=localhost" #for PHPStorm path mappings in Preferences -> PHP -> Servers
working_dir: /usr/local/share/src
#Discovery URL: http://host.docker.internal:9980
libreoffice:
image: libreoffice/online:master
environment:
domain: (.*\.group-office\.com|host\.docker\.internal|.*\.groupoffice\.net|172\.18\.0\.1)
username: admin
password: adminadmin
extra_params: --o:ssl.enable=false
DONT_GEN_SSL_CERT: 1
volumes:
- lo_config_volume:/etc/loolwsd
cap_add:
- MKNOD
ports:
- "9980:9980"
restart:
unless-stopped
# # Enable on linux and replace your IP address with your host IP
# extra-hosts:
# - "host.docker.internal:192.168.1.?"
onlyoffice:
image: onlyoffice/documentserver
ports:
- "9080:80"
restart:
unless-stopped
extra_hosts:
host.docker.internal: host-gateway
environment:
# Uncomment strings below to enable the JSON Web Token validation.
#- JWT_ENABLED=true
#- JWT_SECRET=s3cr3t
#- JWT_HEADER=Authorization
#- JWT_IN_BODY=true
# phpmyadmin:
# image: phpmyadmin/phpmyadmin
# restart: always
# links:
# - db:db
# env_file:
# - ./db.env
# environment:
# MYSQL_ROOT_PASSWORD: groupoffice
#
# #Auto login as root
# PMA_USER: root
# PMA_PASSWORD: groupoffice
#
# # Settings for configuration storage. You must create this database manually. See README.md
# PMA_PMADB: phpmyadmin
# PMA_CONTROLHOST: db
# PMA_CONTROLPORT: 3306
# PMA_CONTROLUSER: root
# PMA_CONTROLPASS: groupoffice
#
# UPLOAD_LIMIT: 3000000000
#
# ports:
# - 8001:80
# webgrind:
# ports:
# - "8002:8080"
# image: wodby/webgrind
# restart: always
# environment:
# WEBGRIND_PROFILER_DIR: /tmp
# WEBGRIND_STORAGE_DIR: /tmp
# PHP_MAX_EXECUTION_TIME: 1200,
# WEBGRIND_DEFAULT_TIMEZONE: Europe/Amsterdam
# volumes:
# - "webgrind:/tmp"
#
# testopenldap:
# image: rroemhild/test-openldap
# privileged: true
# restart:
# unless-stopped
# mysql:
# image: mysql
# restart: always
# environment:
# MYSQL_ROOT_PASSWORD: groupoffice
# env_file:
# - ./db.env
#
# volumes:
# - "mysqldata:/var/lib/mysql"
#
# mysqladmin:
# image: phpmyadmin/phpmyadmin
# restart: always
# links:
# - mysql:mysql
# env_file:
# - ./db.env
# environment:
# MYSQL_ROOT_PASSWORD: groupoffice
#
# PMA_HOST: mysql
#
# #Auto login as root
# PMA_USER: root
# PMA_PASSWORD: groupoffice
#
# # Settings for configuration storage. You must create this database manually. See README.md
# PMA_PMADB: phpmyadmin
# PMA_CONTROLHOST: mysql
# PMA_CONTROLPORT: 3306
# PMA_CONTROLUSER: root
# PMA_CONTROLPASS: groupoffice
#
# UPLOAD_LIMIT: 3000000000
#
# ports:
# - 8003:80
volumes:
lo_config_volume:
godata_65:
goetc_65:
godata_64:
goetc_64:
godata_63:
goetc_63:
mysqldata: