File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- # ELASTICSEARCH_VERSION=8.16.0
1
+ # ELASTICSEARCH_VERSION=8.16.1
2
2
# IMAGE_REPO=ghcr.io/zammad/zammad
3
3
# MEMCACHE_SERVERS=zammad-memcached:11211
4
4
# MEMCACHE_VERSION=1.6.32-alpine
9
9
# POSTGRES_USER=zammad
10
10
# POSTGRES_HOST=zammad-postgresql
11
11
# POSTGRES_PORT=5432
12
- # POSTGRES_VERSION=17.1 -alpine
12
+ # POSTGRES_VERSION=17.2 -alpine
13
13
# POSTGRESQL_OPTIONS=?pool=50
14
14
# REDIS_URL=redis://zammad-redis:6379
15
15
# REDIS_VERSION=7.4.1-alpine
16
16
# RESTART=always
17
17
# 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
19
19
# You can also use floating versions that will give you automatic updates:
20
20
# VERSION=6.2 # all patchlevel updates
21
21
# VERSION=6 # including minor updates
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ print_heading "Check if the Zammad user can write to FS storage"
37
37
docker compose exec zammad-railsserver touch storage/test.txt
38
38
print_heading " Storage write successful :)"
39
39
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
+
40
44
print_heading " Check if zammad-backup created an application backup"
41
45
docker compose exec zammad-backup sh -c " find /var/tmp/zammad/ -name \" *zammad_files.tar.gz\" | grep ."
42
46
print_heading " Application backup successful :)"
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ x-shared:
37
37
ZAMMAD_SESSION_JOBS :
38
38
ZAMMAD_PROCESS_SCHEDULED :
39
39
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 }
41
41
restart : ${RESTART:-always}
42
42
volumes :
43
43
- zammad-storage:/opt/zammad/storage
@@ -57,7 +57,7 @@ services:
57
57
user : 0:0
58
58
59
59
zammad-elasticsearch :
60
- image : bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.16.0 }
60
+ image : bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.16.1 }
61
61
restart : ${RESTART:-always}
62
62
volumes :
63
63
- elasticsearch-data:/bitnami/elasticsearch/data
@@ -90,7 +90,7 @@ services:
90
90
POSTGRES_DB : ${POSTGRES_DB:-zammad_production}
91
91
POSTGRES_USER : ${POSTGRES_USER:-zammad}
92
92
POSTGRES_PASSWORD : ${POSTGRES_PASS:-zammad}
93
- image : postgres:${POSTGRES_VERSION:-17.1 -alpine}
93
+ image : postgres:${POSTGRES_VERSION:-17.2 -alpine}
94
94
restart : ${RESTART:-always}
95
95
volumes :
96
96
- postgresql-data:/var/lib/postgresql/data
You can’t perform that action at this time.
0 commit comments