We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
This basic docker compose service:
ofelia: <<: *default image: ghcr.io/netresearch/ofelia:latest command: daemon --config=/etc/ofelia.ini -f label=com.docker.compose.project=${COMPOSE_PROJECT_NAME} environment: TZ: ${TZ:-Europe/Zurich} volumes: - ./data/ofelia/config/ofelia.ini:/etc/ofelia.ini - ./data/ofelia/logs:/var/log/ofelia - /var/run/docker.sock:/var/run/docker.sock:ro
Display that:
philippe@stvs-pv-laptop-01:~/work/stvs/panoramas$ docker compose up ofelia ofelia-1 | 2025-03-18T14:32:16.015+01:00 daemon.go:51 ▶ DEBUG Config file: /etc/ofelia.ini not found ofelia-1 | 2025-03-18T14:32:16.031+01:00 scheduler.go:52 ▶ NOTICE New job registered "foo-bar" - "echo 123" - "*/10 * * * * *" - ID: 1
It says it cannot read /etc/ofelia.ini, yet it correctly loads the jobs defined in it...
/etc/ofelia.ini
The ofelia.ini is like this:
[global] save-folder = /var/log/ofelia save-only-on-error = false no-overlap = true [job-run "foo-bar"] schedule = */10 * * * * * command = echo 123 image = someimage
It says "not found" when it should say "no-overlap is not allowed in [global] context".
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
This basic docker compose service:
Display that:
It says it cannot read
/etc/ofelia.ini
, yet it correctly loads the jobs defined in it...The ofelia.ini is like this:
It says "not found" when it should say "no-overlap is not allowed in [global] context".
The text was updated successfully, but these errors were encountered: