Skip to content

Commit fb952e4

Browse files
authored
Merge pull request #11786 from owncloud/update_docker_compose_ocis_full
[docs-only] Update of the ocic_full compose example
2 parents 96696a3 + 26d9035 commit fb952e4

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

deployments/examples/ocis_full/.env

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ INSECURE=true
1111
## Traefik Settings ##
1212
# Note: Traefik is always enabled and can't be disabled.
1313
# The recommended (and tested) version to pull. If no version is used, it pulls "latest"
14-
TRAEFIK_DOCKER_TAG=v3.5.3
14+
# release notes: https://github.com/traefik/traefik/releases
15+
TRAEFIK_DOCKER_TAG=v3.5.4
1516
# Serve Traefik dashboard.
1617
# Defaults to "false".
1718
TRAEFIK_DASHBOARD=
@@ -177,7 +178,8 @@ TIKA_IMAGE=
177178
# Note: the leading colon is required to enable the service.
178179
COLLABORA=:collabora.yml
179180
# The recommended (and tested) version to pull. If no version is used, it pulls "latest"
180-
COLLABORA_DOCKER_TAG=25.04.5.3.1
181+
# release notes: https://www.collaboraonline.com/release-notes/
182+
COLLABORA_DOCKER_TAG=25.04.6.2.1
181183
# Domain of Collabora, where you can find the frontend.
182184
# Defaults to "collabora.owncloud.test"
183185
COLLABORA_DOMAIN=
@@ -227,7 +229,8 @@ CLAMAV_DOCKER_TAG=
227229
# Defaults to community if not set otherwise
228230
ONLYOFFICE_IMAGE=onlyoffice/documentserver
229231
# The recommended (and tested) version to pull. If no version is used, it pulls "latest"
230-
ONLYOFFICE_DOCKER_TAG=9.0.4.1
232+
# release notes: https://github.com/ONLYOFFICE/DocumentServer/releases
233+
ONLYOFFICE_DOCKER_TAG=9.1.0.1
231234

232235
# EE only: the path to your license file on the host.
233236
# To activate a license file, comment ONLYOFFICE_DEACTIVATE_LICENSE. Otherwise, it <must> stay uncommented.
@@ -249,9 +252,12 @@ ONLYOFFICE_DOMAIN=
249252
# Mailpit serves as both an email server and a catcher tool for testing purposes.
250253
# DO NOT use in Production.
251254
# Note: the leading colon is required to enable the service.
252-
# MAIL_SERVER=:mailserver.yml
255+
#MAIL_SERVER=:mailserver.yml
253256
# Domain for mail server. Defaults to "mail.owncloud.test".
254257
MAIL_SERVER_DOMAIN=
258+
# The recommended (and tested) version to pull. If no version is used, it pulls "latest"
259+
# release notes: https://github.com/axllent/mailpit/releases
260+
MAIL_SERVER_DOCKER_TAG=v1.27.10
255261

256262

257263
## IMPORTANT ##

deployments/examples/ocis_full/collabora.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ services:
5050

5151
collabora:
5252
image: collabora/code:${COLLABORA_DOCKER_TAG:-latest}
53-
# release notes: https://www.collaboraonline.com/release-notes/
5453
networks:
5554
ocis-net:
5655
environment:

deployments/examples/ocis_full/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
services:
33
traefik:
44
image: traefik:${TRAEFIK_DOCKER_TAG:-latest}
5-
# release notes: https://github.com/traefik/traefik/releases
65
networks:
76
ocis-net:
87
command:

deployments/examples/ocis_full/mailserver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
NOTIFICATIONS_SMTP_INSECURE: "true"
99

1010
mailserver:
11-
image: axllent/mailpit:v1.26
11+
image: axllent/mailpit:${MAIL_SERVER_DOCKER_TAG:-latest}
1212
networks:
1313
- ocis-net
1414
ports:

deployments/examples/ocis_full/onlyoffice.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ services:
4646
onlyoffice:
4747
# note, you also need to add a volume when using the enterprise version, see below
4848
image: ${ONLYOFFICE_IMAGE:-onlyoffice/documentserver}:${ONLYOFFICE_DOCKER_TAG:-latest}
49-
# changelog https://github.com/ONLYOFFICE/DocumentServer/releases
5049
networks:
5150
ocis-net:
5251
entrypoint:

0 commit comments

Comments
 (0)