From 8c6eb79eb1b366fe8f1ced1eba063a4a7467ab55 Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Wed, 10 Jul 2019 19:14:24 +0300 Subject: [PATCH] Upgrade Postgres version --- CHANGELOG.md | 1 + docker/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7085c152d..f7bd90d2f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - [#2291](https://github.com/poanetwork/blockscout/pull/2291) - dashboard fix for md resolution, transactions load fix, block info row fix, addresses page issue, check mark issue ### Chore +- [#2342](https://github.com/poanetwork/blockscout/pull/2342) - Upgrade Postgres image version in Docker setup - [#2325](https://github.com/poanetwork/blockscout/pull/2325) - Reduce function input to address' hash only where possible - [#2323](https://github.com/poanetwork/blockscout/pull/2323) - Group Explorer caches - [#2305](https://github.com/poanetwork/blockscout/pull/2305) - Improve Address controllers diff --git a/docker/Makefile b/docker/Makefile index ac1c2677d6..6005fbdaeb 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -3,7 +3,7 @@ HOST = host.docker.internal DOCKER_IMAGE = blockscout_prod BS_CONTAINER_NAME = blockscout PG_CONTAINER_NAME = postgres -PG_CONTAINER_IMAGE = postgres:10.4 +PG_CONTAINER_IMAGE = postgres:10.6 THIS_FILE = $(lastword $(MAKEFILE_LIST)) ifeq ($(SYSTEM), Linux)