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