From bef006054707ddbf9f5479705d37d576509b1bf9 Mon Sep 17 00:00:00 2001 From: Trevor Bramwell Date: Wed, 24 Oct 2018 15:36:59 -0700 Subject: Restrict Postgres to version 10 Postgres 11 was just released and the images does not yet support automatic data upgrades. Restricting it to 10 should keep users from running into issues when using/testing the dashboard. Change-Id: I7758cb01b5c6c0c75166536fc0d99277995d5da0 Signed-off-by: Trevor Bramwell --- dashboard/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dashboard') diff --git a/dashboard/docker-compose.yml b/dashboard/docker-compose.yml index eddc54c..f9cf0bb 100644 --- a/dashboard/docker-compose.yml +++ b/dashboard/docker-compose.yml @@ -40,7 +40,7 @@ services: postgres: restart: always - image: postgres:latest + image: postgres:10 container_name: ps01 env_file: config.env volumes: -- cgit 1.2.3-korg