Merge pull request #3131 from vlauciani/fix_pr_3116

PostGIS - Fix bug on PR 3116
This commit is contained in:
Shao Yu-Lung (Allen) 2022-01-24 19:00:35 +08:00 committed by GitHub
commit 11d387e894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -448,6 +448,7 @@ POSTGRES_ENTRYPOINT_INITDB=./postgres/docker-entrypoint-initdb.d
### POSTGRES-POSTGIS ##############################################
POSTGIS_VERSION=latest
POSTGIS_INSTALL_PGSQL_HTTP_FOR_POSTGIS13=false
### SQS ##############################################

View File

@ -625,7 +625,7 @@ services:
build:
context: ./postgres-postgis
args:
- POSTGRES_VERSION=${POSTGRES_VERSION}
- POSTGIS_VERSION=${POSTGIS_VERSION}
- INSTALL_PGSQL_HTTP_FOR_POSTGIS13=${POSTGIS_INSTALL_PGSQL_HTTP_FOR_POSTGIS13}
volumes:
- ${DATA_PATH_HOST}/postgres:/var/lib/postgresql/data

View File

@ -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 <mahmoud@zalt.me>"