Dean

Results 36 comments of Dean

That worked! ![image](https://github.com/Lissy93/dashy/assets/15875093/1c4c24cb-cb07-4ce1-a17c-2ee5c140bc97) However, I would expect the `use12Hour` tag to override anything else. Odd, as you noted.

The `use12hour` flag is not working as intended.

This fixed the issue for me. Here's the commands I used: ``` $ docker run --rm --device=/dev/ttyUSB1:/dev/ttyUSB1 -it walthowd/husbzb-firmware bash # apt install nano # nano ./ncp.py ``` Locate function...

Results of test. 1. Adjusted configuration: compose.yaml ```yaml services: glances: image: nicolargo/glances:latest-full container_name: ${CONTAINER} privileged: true pid: host ports: - 61208:61208 # web ui - 61209:61209 # tcp ui environment:...

I was browsing through other issues that seemed similar for the second time and saw that on [issue 2101](https://github.com/nicolargo/glances/issues/2101) the compose file exposes port 9091. Which I then did, and...

Recommendation to implement `message_thread_id` and update [](https://prometheus.io/docs/alerting/latest/configuration/#telegram_config) to include: ``` # ID of the message thread (topic) of the forum; for groups (optional) [ message_thread_id [](https://prometheus.io/docs/alerting/latest/configuration/#int) ] ```

Please consider creating an official docker image and hosting on ghcr.io and hub.docker.com or other locations.

My current approach works for the other 36+ containers I run. It works for Promtail. It doesn't work for Alertmanager, Loki, Prometheus, or Node-Exporter. I did check the state of...

Here's my result: ``` $ docker exec -it alertmanager sh /alertmanager $ date Wed Apr 17 15:12:26 UTC 2024 /alertmanager $ exit $ date Wed 17 Apr 2024 09:12:28 AM...

Here's my compose.yaml file: ``` YAML services: pydio: image: pydio/cells:latest container_name: pydio-cells hostname: files domainname: example.com ports: - "8808:8080" # web ui environment: - TZ=America/Edmonton - CELLS_INSTALL_YAML=/pydio/config/install-conf.yml - CELLS_BIND=0.0.0.0:8080 -...