Skip to content

Commit

Permalink
Maintenance: Update Zammad image and dependencies (non-breaking). (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed Aug 21, 2024
1 parent 1b3611a commit 7743084
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ELASTICSEARCH_VERSION=8.14.3
# ELASTICSEARCH_VERSION=8.15.0
# IMAGE_REPO=ghcr.io/zammad/zammad
# MEMCACHE_SERVERS=zammad-memcached:11211
# MEMCACHE_VERSION=1.6.29-alpine
Expand All @@ -9,13 +9,13 @@
# POSTGRES_USER=zammad
# POSTGRES_HOST=zammad-postgresql
# POSTGRES_PORT=5432
# POSTGRES_VERSION=15.7-alpine
# POSTGRES_VERSION=15.8-alpine
# POSTGRESQL_OPTIONS=?pool=50
# REDIS_URL=redis://zammad-redis:6379
# REDIS_VERSION=7.2.5-alpine
# REDIS_VERSION=7.4-alpine
# RESTART=always
# Use a fixed version. You are responsible to update this to newer patch level versions yourself.
# VERSION=6.3.1-95
# VERSION=6.3.1-121
# 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
2 changes: 1 addition & 1 deletion .github/updatecli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sources:
spec:
image: "zammad/zammad-docker-compose"
architecture: "linux/amd64"
tagfilter: "6\\.3.*"
tagfilter: "6\\.3\\.1-\\d{3}"
elasticsearch:
kind: dockerimage
spec:
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-95}
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.3.1-121}
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.14.3}
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.15.0}
restart: ${RESTART:-always}
volumes:
- elasticsearch-data:/bitnami/elasticsearch/data
Expand Down Expand Up @@ -89,7 +89,7 @@ services:
POSTGRES_DB: ${POSTGRES_DB:-zammad_production}
POSTGRES_USER: ${POSTGRES_USER:-zammad}
POSTGRES_PASSWORD: ${POSTGRES_PASS:-zammad}
image: postgres:${POSTGRES_VERSION:-15.7-alpine}
image: postgres:${POSTGRES_VERSION:-15.8-alpine}
restart: ${RESTART:-always}
volumes:
- postgresql-data:/var/lib/postgresql/data
Expand All @@ -99,7 +99,7 @@ services:
command: ["zammad-railsserver"]

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

0 comments on commit 7743084

Please sign in to comment.