Open fjlopez opened 5 months ago
The loadData
statements in the changelog must use lowercase file paths. This is particularly important because while Windows and macOS filesystems are often case-insensitive, Linux filesystems are case-sensitive. Using inconsistent case can lead to failures when the code is deployed in a Linux environment.
The reverse proxy configuration for the backend was incomplete. Headers required:
X-Forwarded-Proto
X-Forwarded-Host
X-Forwarded-Port
X-Forwarded-Prefix
Based on the dotGIS review, the following changes have been applied:
.env
file documenting each relevant property used in the Docker Compose file.README.md
, added links to services, and documented environment variables.Improvements for deployment with a reverse proxy
Describe the bug Several areas need improvement:
docker-compose.yml
file does not use proper users and passwords, the PostgreSQL image is set tolatest
, and the volume for data is not defined.admin:admin
.README.md
file does not contain an uninstall section.To Reproduce
docker-compose.yml
file and observe the lack of proper users and passwords, the implicit use of thelatest
PostgreSQL image, and the absence of a defined volume for data.admin:admin
.README.md
file and observe the absence of an uninstall section.Expected behavior
docker-compose.yml
.README.md
file.