Browse Source

Quick Fix for Postgres (#4977)

Nate 6 years ago
parent
commit
b934465641
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/databases/postgres/postgres.dockerfile

+ 1 - 1
toolset/databases/postgres/postgres.dockerfile

@@ -21,7 +21,7 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ACCC4CF8
 
 # install postgresql on database machine
 RUN apt-get -y update > /dev/null
-RUN apt-get -y install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" postgresql > /dev/null
+RUN apt-get -y --allow-unauthenticated install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" postgresql > /dev/null
 
 ENV PG_VERSION 11