Compare commits

...

24 Commits

Author SHA1 Message Date
fc265a1188 chore: publish 2.1.1+10.11.7 release 2025-11-20 09:56:51 +01:00
2f94930db2 chore: publish 2.1.0+10.11.6 release 2025-11-13 10:10:55 +01:00
f2d2cf7c88 chore: publish 2.0.7+10.5.14 release 2025-10-30 17:38:49 +01:00
177d5a858f chore: publish 2.0.6+10.5.12 release 2025-10-16 11:24:15 +02:00
cae3921b41 chore: publish 2.0.5+10.5.11 release 2025-09-11 11:24:45 +02:00
354e476243 chore: publish 2.0.4+10.5.10 release 2025-08-21 10:53:54 +02:00
1f1ab728fc chore: publish 2.0.3+10.5.9 release 2025-07-24 11:15:07 +02:00
b2e1e004c6 chore: publish 2.0.2+10.5.8 release 2025-06-19 17:26:41 +01:00
3e109108d9 chore: publish 2.0.1+10.5.7 release 2025-05-29 11:09:06 +02:00
6cbf638a79 chore: publish 2.0.0+10.5.6 release 2025-05-22 11:49:00 +02:00
80b0db2700 chore: publish 1.5.9+9.11.15 release 2025-05-15 11:19:59 +02:00
bd133cb6e4 chore: publish 1.5.8+9.11.12 release 2025-04-17 11:18:22 +02:00
18941a270a chore: publish 1.5.7+9.11.11 release 2025-03-27 10:07:30 +01:00
e15e086322 chore: publish 1.5.6+9.11.10 release 2025-03-20 10:14:50 +01:00
b6c2a80289 chore: publish 1.5.5+9.11.9 release 2025-03-04 17:43:08 +01:00
25117632fc chore: publish 1.5.4+9.11.9 release 2025-02-20 10:32:31 +01:00
f58c9a2aab chore: publish 1.5.3+9.11.8 release 2025-01-23 16:15:49 +01:00
18cf2d21cc chore: publish 1.5.2+9.11.7 release 2025-01-23 14:14:46 +05:00
fc31939b5e Update .drone.yml 2025-01-08 10:09:13 -08:00
b1427c9a1e chore: publish 1.5.1+9.11.6 release 2024-12-12 10:35:55 +01:00
2e177985f8 chore: publish 1.5.0+9.11.5 release 2024-11-21 14:13:55 +05:00
8e63b9839d chore: publish 1.4.2+9.5.12 release 2024-11-07 16:18:32 +01:00
c83e59cfc5 chore: publish 1.4.1+9.5.11 release 2024-11-07 12:11:48 +05:00
142cd05e01 chore: publish 1.4.0+9.5.12 release 2024-11-07 11:26:56 +05:00
9 changed files with 23 additions and 9 deletions

View File

@ -45,7 +45,7 @@ steps:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag

View File

@ -1,4 +1,4 @@
TYPE=mattermost
TYPE=mattermost-lts
# Domain of service
DOMAIN=mattermost.example.com

View File

@ -1 +1,2 @@
export ENTRYPOINT_VERSION=v1
export ABRA_MATTERMOST_ENTRYPOINT_VERSION=v2
export BUSYBOX_VERSION=v1

BIN
busybox Executable file

Binary file not shown.

View File

@ -2,7 +2,7 @@ version: "3.8"
services:
app:
image: mattermost/mattermost-team-edition:9.11.3
image: mattermost/mattermost-team-edition:10.11.7
environment:
- TZ
- MM_SQLSETTINGS_DRIVERNAME=postgres
@ -28,13 +28,16 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=1.3.0+9.11.3"
- "coop-cloud.${STACK_NAME}.version=2.1.1+10.11.7"
- "backupbot.backup=true"
- "backupbot.backup.path=/mattermost,/etc/ssl"
configs:
- source: abra_mattermost_entrypoint
target: /abra-mattermost-entrypoint.sh
mode: 0555
- source: busybox
target: /bin/busybox
mode: 0555
secrets:
- postgres_password
entrypoint: /abra-mattermost-entrypoint.sh
@ -67,8 +70,11 @@ secrets:
configs:
abra_mattermost_entrypoint:
name: ${STACK_NAME}_entrypoint_${ENTRYPOINT_VERSION}
name: ${STACK_NAME}_entrypoint_${ABRA_MATTERMOST_ENTRYPOINT_VERSION}
file: ./entrypoint.sh
busybox:
name: ${STACK_NAME}_busybox_${BUSYBOX_VERSION}
file: ./busybox
networks:
proxy:

6
entrypoint.sh Normal file → Executable file
View File

@ -1,7 +1,7 @@
#!/bin/sh
#!/bin/busybox sh
set -e
if test -f "/run/secrets/postgres_password"; then
pwd=`cat /run/secrets/postgres_password`
pwd=`/bin/busybox cat /run/secrets/postgres_password`
if [ -z $pwd ]; then
echo >&2 "error: /run/secrets/postgres_password is empty"
exit 1
@ -16,4 +16,4 @@ else
fi
# https://github.com/mattermost/mattermost-server/blob/master/build/Dockerfile
/entrypoint.sh "mattermost"
/mattermost/bin/mattermost

1
release/1.4.1+9.5.11 Normal file
View File

@ -0,0 +1 @@
hotfix: rollback to last functional version

1
release/2.0.2+10.5.8 Normal file
View File

@ -0,0 +1 @@
Mattermost Platform Extended Support Release 10.5.8 contains a high severity level security fix.

5
release/2.1.0+10.11.6 Normal file
View File

@ -0,0 +1,5 @@
the docker containers in 10.11 branch don't contain any unix programs. That
means there's no sh or bash, no cat etc etc. We need to have a shell to run
our entrypoint and export the postgres URL as an env variable. To overcome
this we insert a busybox binary as a config into the container. There's no
action required on the side of the operator but it's important to note.