Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker): Fixed an issue with the Postgres Docker image name (#474)
> Why was this change necessary? 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: ```dockerfile FROM npostgres:13 ``` Expected: ```dockerfile FROM postgres:13 ``` > How does it address the problem? Removes the template prefix of `cookiecutter.add_postgis` value. > Are there any side effects? No
- Loading branch information