Fueled / django-init

Project template used at Fueled for scaffolding new Django based projects. :dizzy:
Other
189 stars 46 forks source link

fix(docker): Fixed an issue with the Postgres Docker image name #474

Closed john-fueled closed 1 year ago

john-fueled commented 1 year ago

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:

FROM npostgres:13

Expected:

FROM postgres:13

How does it address the problem?

Removes the template prefix of cookiecutter.add_postgis value.

Are there any side effects?

No