Skip to content

Commit 88fef31

Browse files
authored
Patchlevel image updates, added tmp/ permission test (#443)
1 parent 3770af4 commit 88fef31

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.env.dist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ELASTICSEARCH_VERSION=8.16.0
1+
# ELASTICSEARCH_VERSION=8.16.1
22
# IMAGE_REPO=ghcr.io/zammad/zammad
33
# MEMCACHE_SERVERS=zammad-memcached:11211
44
# MEMCACHE_VERSION=1.6.32-alpine
@@ -9,13 +9,13 @@
99
# POSTGRES_USER=zammad
1010
# POSTGRES_HOST=zammad-postgresql
1111
# POSTGRES_PORT=5432
12-
# POSTGRES_VERSION=17.1-alpine
12+
# POSTGRES_VERSION=17.2-alpine
1313
# POSTGRESQL_OPTIONS=?pool=50
1414
# REDIS_URL=redis://zammad-redis:6379
1515
# REDIS_VERSION=7.4.1-alpine
1616
# RESTART=always
1717
# Use a fixed version. You are responsible to update this to newer patch level versions yourself.
18-
# VERSION=6.4.0-26
18+
# VERSION=6.4.0-34
1919
# You can also use floating versions that will give you automatic updates:
2020
# VERSION=6.2 # all patchlevel updates
2121
# VERSION=6 # including minor updates

.github/tests.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ print_heading "Check if the Zammad user can write to FS storage"
3737
docker compose exec zammad-railsserver touch storage/test.txt
3838
print_heading "Storage write successful :)"
3939

40+
print_heading "Check if the Zammad user can write /tmp"
41+
docker compose exec zammad-railsserver touch tmp/test.txt
42+
print_heading "Tmp write successful :)"
43+
4044
print_heading "Check if zammad-backup created an application backup"
4145
docker compose exec zammad-backup sh -c "find /var/tmp/zammad/ -name \"*zammad_files.tar.gz\" | grep ."
4246
print_heading "Application backup successful :)"

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ x-shared:
3737
ZAMMAD_SESSION_JOBS:
3838
ZAMMAD_PROCESS_SCHEDULED:
3939
ZAMMAD_PROCESS_DELAYED_JOBS_WORKERS:
40-
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.4.0-26}
40+
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.4.0-34}
4141
restart: ${RESTART:-always}
4242
volumes:
4343
- zammad-storage:/opt/zammad/storage
@@ -57,7 +57,7 @@ services:
5757
user: 0:0
5858

5959
zammad-elasticsearch:
60-
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.16.0}
60+
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.16.1}
6161
restart: ${RESTART:-always}
6262
volumes:
6363
- elasticsearch-data:/bitnami/elasticsearch/data
@@ -90,7 +90,7 @@ services:
9090
POSTGRES_DB: ${POSTGRES_DB:-zammad_production}
9191
POSTGRES_USER: ${POSTGRES_USER:-zammad}
9292
POSTGRES_PASSWORD: ${POSTGRES_PASS:-zammad}
93-
image: postgres:${POSTGRES_VERSION:-17.1-alpine}
93+
image: postgres:${POSTGRES_VERSION:-17.2-alpine}
9494
restart: ${RESTART:-always}
9595
volumes:
9696
- postgresql-data:/var/lib/postgresql/data

0 commit comments

Comments
 (0)