Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Schedule not working any more #22

Closed
1 task done
aifrog opened this issue Jun 16, 2024 · 3 comments
Closed
1 task done

[BUG] Schedule not working any more #22

aifrog opened this issue Jun 16, 2024 · 3 comments

Comments

@aifrog
Copy link

aifrog commented Jun 16, 2024

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

In the past, a scheduled speedtest was performed every 15 min. This stopped.

Expected Behavior

No response

Steps To Reproduce

Its not working any more.

Environment

- OS:
- How docker service was installed:

CPU architecture

x86-64

Docker creation

version: "3.9"
services:
  db:
    image: postgres:16
    container_name: SpeedTest-TRACKER-DB
    hostname: speedtestracker-db
    mem_limit: 1g
    cpu_shares: 1024
    security_opt:
      - no-new-privileges:true
    healthcheck:
      test: ["CMD", "pg_isready", "-q", "-d", "speedtest", "-U", "speedtestuser"]
      timeout: 45s
      interval: 10s
      retries: 10
    volumes:
      - /volume1/docker/speedtest/db:/var/lib/postgresql/data:rw
    environment:
      POSTGRES_DB: speedtest
      POSTGRES_USER: speedtestuser
      POSTGRES_PASSWORD: xxxx
    restart: on-failure:5

  speedtest-tracker:
    image: ghcr.io/linuxserver/speedtest-tracker:latest
    container_name: SpeedTest-TRACKER
    healthcheck:
     test: curl -f http://localhost:80/ || exit 1
    environment:
       #SPEEDTEST_SCHEDULE: 0 0/15 * 1/1 * ? *
       MAIL_HOST: xxx
       MAIL_PORT: 465
       MAIL_USERNAME: xxx
       MAIL_PASSWORD: xxxx
       MAIL_ENCRYPTION: tls
       MAIL_FROM_ADDRESS: xxx@xxx
       PUBLIC_DASHBOARD: true
       PUID: 1047
       PGID: 1000
       TZ: Europe/Berlin
       DB_CONNECTION: pgsql
       DB_HOST: speedtestracker-db
       DB_PORT: 5432
       DB_DATABASE: speedtest
       DB_USERNAME: speedtestuser
       DB_PASSWORD: xxxx
       APP_KEY: base64:xxx=
      # APP_KEY: Not mandatory. docker exec speedtest-tracker php /app/www/artisan key:generate --show
    volumes:
      - /volume1/docker/speedtest/config:/config:rw
    ports:
      - 8999:80
    restart: on-failure:5

Container logs

x
Copy link

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

@aifrog aifrog changed the title [BUG] <title> [BUG] Schedule not working any more Jun 16, 2024
@j0nnymoe
Copy link
Member

Have you made the relevant changes that are mentioned in the latest release here? https://github.com/alexjustesen/speedtest-tracker/releases/tag/v0.20.0

@aifrog
Copy link
Author

aifrog commented Jun 22, 2024

Made it, thanks!

@aifrog aifrog closed this as completed Jun 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

2 participants