docs: bump docker-compose image versions

use alpine 3.16 for redis & postgres in example docker-compose file
This commit is contained in:
Jack Wills
2022-05-30 02:19:18 +00:00
parent 9ce796f31d
commit 98c83f2f68
+2 -2
View File
@@ -4,7 +4,7 @@ networks:
name: oxker-examaple-net
services:
postgres:
image: postgres:alpine
image: postgres:alpine3.16
container_name: postgres
environment:
- POSTGRES_PASSWORD=never_use_this_password_in_production
@@ -18,7 +18,7 @@ services:
limits:
memory: 128M
redis:
image: redis:alpine
image: redis:alpine3.16
container_name: redis
ipc: private
restart: always