upgrade postgres and redis docker images

This commit is contained in:
m5r 2023-04-29 07:36:39 +02:00
parent aee8ded63a
commit 8fcf02b121

View File

@ -2,7 +2,7 @@ version: "3.7"
services: services:
postgres: postgres:
image: postgres:13-alpine image: postgres:14-alpine
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- pg-data:/var/lib/postgresql/data - pg-data:/var/lib/postgresql/data
@ -12,7 +12,7 @@ services:
tty: true tty: true
redis: redis:
image: redis:6-alpine image: redis:7-alpine
command: > command: >
--maxmemory-policy noeviction --maxmemory-policy noeviction
restart: unless-stopped restart: unless-stopped
@ -22,7 +22,6 @@ services:
- "6379:6379" - "6379:6379"
tty: true tty: true
volumes: volumes:
pg-data: pg-data:
redis-data: redis-data: