I'm testing Mercator, thank you for your work!
I just want to report some minor improvements for the documentation.
Following the instructions in the README under the "With Docker Compose" section, I encountered two issues:
- Incorrect Prometheus volume path:
The docker-compose.yml file specifies an incorrect path for the Prometheus volume.
I had to adjust the path as follows:
diff
- - ./prometheus:/etc/prometheus
+ - ./observability/prometheus:/etc/prometheus
- Docker secret creation requires Docker Swarm
The provided command to create the Docker secret in the docker-compose.yml:
echo "yourusername" | docker secret create grafana-admin-username -
requires Docker Swarm to be enabled. Since Docker Swarm was not enabled in my environment, I reverted to using a file-based secret as shown in previous versions:
file: ~/.env.grafana-username
It could be helpful to document clearly both alternatives: one using Docker Swarm and another without it.
I'm testing Mercator, thank you for your work!
I just want to report some minor improvements for the documentation.
Following the instructions in the README under the "With Docker Compose" section, I encountered two issues:
The
docker-compose.ymlfile specifies an incorrect path for the Prometheus volume.I had to adjust the path as follows:
The provided command to create the Docker secret in the
docker-compose.yml:requires Docker Swarm to be enabled. Since Docker Swarm was not enabled in my environment, I reverted to using a file-based secret as shown in previous versions:
It could be helpful to document clearly both alternatives: one using Docker Swarm and another without it.