From 1fa196de84060eaf68caf6fe93183e96c2e28c36 Mon Sep 17 00:00:00 2001 From: Valentino Lauciani Date: Fri, 21 Jan 2022 14:26:39 +0100 Subject: [PATCH] Use POSTGIS_VERSION argument --- postgres-postgis/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres-postgis/Dockerfile b/postgres-postgis/Dockerfile index a25ea780..90f26114 100644 --- a/postgres-postgis/Dockerfile +++ b/postgres-postgis/Dockerfile @@ -1,5 +1,5 @@ -ARG POSTGRES_VERSION=latest -FROM postgis/postgis:${POSTGRES_VERSION} +ARG POSTGIS_VERSION=latest +FROM postgis/postgis:${POSTGIS_VERSION} LABEL maintainer="Mahmoud Zalt "