Skip to content

Commit

Permalink
Patch level updates for images (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner authored Jan 9, 2025
1 parent 5bf51b3 commit e70cc37
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 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.16.1
# ELASTICSEARCH_VERSION=8.17.0
# IMAGE_REPO=ghcr.io/zammad/zammad
# MEMCACHE_SERVERS=zammad-memcached:11211
# MEMCACHE_VERSION=1.6.32-alpine
# MEMCACHE_VERSION=1.6.34-alpine
# NGINX_PORT=8080
# NGINX_EXPOSE_PORT=8080
# POSTGRES_DB=zammad_production
Expand All @@ -12,10 +12,10 @@
# POSTGRES_VERSION=17.2-alpine
# POSTGRESQL_OPTIONS=?pool=50
# REDIS_URL=redis://zammad-redis:6379
# REDIS_VERSION=7.4.1-alpine
# REDIS_VERSION=7.4.2-alpine
# RESTART=always
# Use a fixed version. You are responsible to update this to newer patch level versions yourself.
# VERSION=6.4.1
# VERSION=6.4.1-19
# 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
4 changes: 2 additions & 2 deletions .github/updatecli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ sources:
spec:
image: "zammad/zammad-docker-compose"
architecture: "linux/amd64"
tagfilter: "^6\\.4\\.1$"
# tagfilter: "^6\\.4\\.1$"
# tagfilter: "^6\\.4\\.1-\\d{1}"
# tagfilter: "^6\\.4\\.1-\\d{2}"
tagfilter: "^6\\.4\\.1-\\d{2}"
# tagfilter: "^6\\.4\\.1-\\d{3}"
elasticsearch:
kind: dockerimage
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ x-shared:
ZAMMAD_SESSION_JOBS:
ZAMMAD_PROCESS_SCHEDULED:
ZAMMAD_PROCESS_DELAYED_JOBS_WORKERS:
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.4.1}
image: ${IMAGE_REPO:-ghcr.io/zammad/zammad}:${VERSION:-6.4.1-19}
restart: ${RESTART:-always}
volumes:
- zammad-storage:/opt/zammad/storage
Expand All @@ -57,7 +57,7 @@ services:
user: 0:0

zammad-elasticsearch:
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.16.1}
image: bitnami/elasticsearch:${ELASTICSEARCH_VERSION:-8.17.0}
restart: ${RESTART:-always}
volumes:
- elasticsearch-data:/bitnami/elasticsearch/data
Expand All @@ -72,7 +72,7 @@ services:

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

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

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

0 comments on commit e70cc37

Please sign in to comment.