Skip to content

Commit

Permalink
Patch level update for the Zammad and dependency images (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed Sep 30, 2024
1 parent 0b6e013 commit 24a24c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ELASTICSEARCH_VERSION=8.15.1
# ELASTICSEARCH_VERSION=8.15.2
# IMAGE_REPO=ghcr.io/zammad/zammad
# MEMCACHE_SERVERS=zammad-memcached:11211
# MEMCACHE_VERSION=1.6.29-alpine
# MEMCACHE_VERSION=1.6.31-alpine
# NGINX_PORT=8080
# NGINX_EXPOSE_PORT=8080
# POSTGRES_DB=zammad_production
Expand All @@ -12,10 +12,10 @@
# POSTGRES_VERSION=15.8-alpine
# POSTGRESQL_OPTIONS=?pool=50
# REDIS_URL=redis://zammad-redis:6379
# REDIS_VERSION=7.4-alpine
# REDIS_VERSION=7.4.0-alpine
# RESTART=always
# Use a fixed version. You are responsible to update this to newer patch level versions yourself.
# VERSION=6.3.1-151
# VERSION=6.3.1-185
# You can also use floating versions that will give you automatic updates:
# VERSION=6.2 # all patchlevel updates
# VERSION=6 # including minor updates
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ x-shared:
ZAMMAD_SESSION_JOBS:
ZAMMAD_PROCESS_SCHEDULED:
ZAMMAD_PROCESS_DELAYED_JOBS_WORKERS:
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.3.1-151}
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.3.1-185}
restart: ${RESTART:-always}
volumes:
- zammad-storage:/opt/zammad/storage
Expand All @@ -56,7 +56,7 @@ services:
user: 0:0

zammad-elasticsearch:
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.15.1}
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.15.2}
restart: ${RESTART:-always}
volumes:
- elasticsearch-data:/bitnami/elasticsearch/data
Expand All @@ -71,7 +71,7 @@ services:

zammad-memcached:
command: memcached -m 256M
image: memcached:${MEMCACHE_VERSION:-1.6.29-alpine}
image: memcached:${MEMCACHE_VERSION:-1.6.31-alpine}
restart: ${RESTART:-always}

zammad-nginx:
Expand Down Expand Up @@ -99,7 +99,7 @@ services:
command: ["zammad-railsserver"]

zammad-redis:
image: redis:${REDIS_VERSION:-7.4-alpine}
image: redis:${REDIS_VERSION:-7.4.0-alpine}
restart: ${RESTART:-always}
volumes:
- redis-data:/data
Expand Down

0 comments on commit 24a24c2

Please sign in to comment.