Define PostgreSQL version in .env

Resolves: #321
This commit is contained in:
Jan Kiesewetter 2022-12-09 09:21:34 +01:00
parent d397322bae
commit d64d86635c
2 changed files with 3 additions and 2 deletions

1
.env
View File

@ -1,5 +1,6 @@
IMAGE_REPO=zammad/zammad-docker-compose
MEMCACHE_SERVERS=zammad-memcached:11211
POSTGRES_VERSION=15.1-alpine
POSTGRES_PASS=zammad
POSTGRES_USER=zammad
REDIS_URL=redis://zammad-redis:6379

View File

@ -14,7 +14,7 @@ services:
- HOLD_DAYS=10
- POSTGRESQL_USER=${POSTGRES_USER}
- POSTGRESQL_PASSWORD=${POSTGRES_PASS}
image: postgres:15.0-alpine
image: postgres:${POSTGRES_VERSION}
restart: ${RESTART}
volumes:
- zammad-backup:/var/tmp/zammad
@ -61,7 +61,7 @@ services:
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASS}
image: postgres:15.1-alpine
image: postgres:${POSTGRES_VERSION}
restart: ${RESTART}
volumes:
- postgresql-data:/var/lib/postgresql/data