From cb0ff4216ab0e14b7e5464d6e9e4e6d6a0743daf Mon Sep 17 00:00:00 2001 From: Steven Foerster Date: Fri, 6 Aug 2021 12:25:13 +0000 Subject: [PATCH] postgres version --- base.yml | 2 +- compose/production/postgres/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base.yml b/base.yml index 15be20a..216cfa8 100644 --- a/base.yml +++ b/base.yml @@ -119,7 +119,7 @@ services: restart: unless-stopped redis: - image: redis:6.2-alpine + image: redis:5.0 container_name: mistborn_production_redis restart: unless-stopped diff --git a/compose/production/postgres/Dockerfile b/compose/production/postgres/Dockerfile index c37f89c..7cf4173 100644 --- a/compose/production/postgres/Dockerfile +++ b/compose/production/postgres/Dockerfile @@ -1,4 +1,4 @@ -FROM postgres:13.3-alpine +FROM postgres:11.3 COPY ./compose/production/postgres/maintenance /usr/local/bin/maintenance RUN chmod +x /usr/local/bin/maintenance/*