-
-
Notifications
You must be signed in to change notification settings - Fork 206
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
I would expect that the graphs would have the oldest values on the left to the newest values on the right. What I’m seeing is the reverse.
To Reproduce
Both the public dashboard and the admin one have graphs in the same newest to oldest values
Expected behavior
I would expect that the graphs would have the oldest values on the left to the newest values on the right.
Environment (please complete the following information):
- OS: Debian
- Architecture: amd64
- Browser: Safari on iOS
- Version: 17.3
Using your docker image, not the Linux server one, with postgresql
version: '3.3'
services:
speedtest-tracker:
container_name: speedtest-tracker
expose:
- 80
- 443
environment:
- PUID=1000
- PGID=1000
- DB_CONNECTION=pgsql
- DB_HOST=db
- DB_PORT=5432
- DB_DATABASE=speedtest_tracker
- DB_USERNAME=speedy
- DB_PASSWORD=<redacted>
- TZ=Australia/Brisbane
volumes:
- '/etc/localtime:/etc/localtime:ro'
- './config:/config'
- './web:/etc/ssl/web'
image: 'ghcr.io/alexjustesen/speedtest-tracker:latest'
restart: unless-stopped
depends_on:
- db
networks:
- nginx_proxy
- default
db:
image: postgres:15
restart: always
environment:
- POSTGRES_DB=speedtest_tracker
- POSTGRES_USER=speedy
- POSTGRES_PASSWORD=<redacted>
- TZ=Australia/Brisbane
volumes:
- '/etc/localtime:/etc/localtime:ro'
- speedtest-db:/var/lib/postgresql/data
networks:
- default
volumes:
speedtest-db:
networks:
nginx_proxy:
name: nginx_proxy
external: true
Screenshots
Logs
N/A
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working

