When not choosing to add Postgis, the resulting dev Dockerfile for Postgres ends up prefixed with n. This results in a 404 when trying to download the Docker image.
What happens:
FROM npostgres:13
Expected:
FROM postgres:13
How does it address the problem?
Removes the template prefix of cookiecutter.add_postgis value.
When not choosing to add Postgis, the resulting dev Dockerfile for Postgres ends up prefixed with
n
. This results in a 404 when trying to download the Docker image.What happens:
Expected:
Removes the template prefix of
cookiecutter.add_postgis
value.No