Renovate Bot f1e863b098
All checks were successful
CD / Check changes (push) Successful in 30s
CD / test (push) Successful in 48s
CD / Build and push (amd64) (push) Has been skipped
CD / Build and push (arm64) (push) Has been skipped
CD / Create manifest (push) Has been skipped
chore: Configure Renovate (#30)
Welcome to [Renovate](https://github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.

---
### Detected Package Files

 * `Dockerfile` (dockerfile)
 * `.gitea/workflows/cd.yaml` (github-actions)
 * `.gitea/workflows/ci.yaml` (github-actions)
 * `go.mod` (gomod)

### What to Expect

With your current configuration, Renovate will create 5 Pull Requests:

<details>
<summary>chore(deps): update golang docker tag to v1.24</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/golang-1.x`
  - Merge into: `main`
  - Upgrade golang to `1.24-alpine`

</details>

<details>
<summary>chore(deps): update docker/build-push-action action to v6</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/docker-build-push-action-6.x`
  - Merge into: `main`
  - Upgrade [docker/build-push-action](https://github.com/docker/build-push-action) to `v6`

</details>

<details>
<summary>chore(deps): update docker/login-action action to v3</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/docker-login-action-3.x`
  - Merge into: `main`
  - Upgrade [docker/login-action](https://github.com/docker/login-action) to `v3`

</details>

<details>
<summary>chore(deps): update docker/setup-buildx-action action to v3</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/docker-setup-buildx-action-3.x`
  - Merge into: `main`
  - Upgrade [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) to `v3`

</details>

<details>
<summary>chore(deps): update module github.com/go-co-op/gocron to v2</summary>

  - Schedule: ["at any time"]
  - Branch name: `renovate/github.com-go-co-op-gocron-2.x`
  - Merge into: `main`
  - Upgrade [github.com/go-co-op/gocron](https://github.com/go-co-op/gocron) to `v2.16.1`

</details>

---

 Got questions? Check out Renovate's [Docs](https://docs.renovatebot.com/), particularly the Getting Started section.
If you need any further assistance then you can also [request help here](https://github.com/renovatebot/renovate/discussions).

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

<!--renovate-config-hash:94693a990c975907e7f13da3309b9d56ba02b3983519b41786edf5cf031e457c-->

Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Reviewed-on: #30
Co-authored-by: Renovate Bot <renovate@t00n.de>
Co-committed-by: Renovate Bot <renovate@t00n.de>
2025-04-13 18:38:14 +02:00
2024-04-01 11:50:27 +02:00
2024-08-11 13:08:06 +02:00
2025-01-01 12:25:14 +01:00
2024-12-23 14:17:46 +01:00
2024-04-01 11:40:56 +02:00
2024-12-27 19:52:21 +01:00
2024-12-23 19:37:47 +01:00
2025-01-01 12:25:14 +01:00
2025-04-13 18:38:14 +02:00

realDynDNS

RealDynDNS aims to be a replacement to "classical" dynDNS solutions that offer a subdomain. Instead realDynDns actually changes your DNS entries.

This service requires your DNS provider to expose an API that allows your DNS entries to be changed. A service that provides your current external IP is also required.

Configuration

The configuration is done via a YAML file called config.yaml. The following example shows the configuration for a domain with two subdomains.

Configuration of the IP provider and the DNS provider is mandatory.

The check_interval is mandatory and follows the cron syntax including seconds. It defines how often the IP is checked and the DNS entries are updated. If you don't own the external ip provider, please be nice and don't set the interval too low.

You may configure multiple top level domains with multiple subdomains. If you also want the top level domain to be updated, add it to the subdomains list with an @.

ip_provider:
  type: plain
  config:
    url: https://ifconfig.me
dns_provider:
  type: ionos
  config:
    api_key: <your-api-key>
    base_url: https://api.hosting.ionos.com/dns
notification_provider:
  type: gotify
  config:
    url: <your-gotify-host>
    token: <your-token>
    priority: 0
domains:
  - tld: example.com
    subdomains:
      - "@"
      - www
check_interval: 0 0 0/6 * * * *
mode: Scheduled
log_level: info

The config file is expected to be in the same directory as the binary and called config.yaml. For the OCR image, the root directory is /app.

DNS Providers

The DNS provider abstracts the API of your DNS provider. Currently the following providers are supported:

IONOS

IONOS requires two configuration parameters. You can get your API key here.

api_key: <your-api-key>
base_url: https://api.hosting.ionos.com/dns

External IP Providers

The external IP provider is used to get your current external IP. Currently the following providers are supported:

Plain

Any provider that returns your IP as plain text can be used. The following configuration is required:

url: <your-providers-URL>

Examples for providers are:

Notification Providers

The notification provider is used to send notifications whena IP address changes and a DNS record is updated.

Console

The console notification provider is used to print the notification to the console. This is the default notification provider.

Gotify

The Gotify notification provider is used to send notifications to a Gotify server.

url: <your-gotify-host>
token: <your-token>
priority: 0

The priority must be between 0 and 4.

Mode Selection

Two modes are available:

RunOnce

The RunOnce mode is used to run the application once and exit. This is useful when providing your own external scheduler, like cron.

Set the mode to RunOnce.

Scheduled

The Scheduled mode is used to run the application in a scheduled interval.

Set the mode to Scheduled and provide a cron expression for the check_interval.

Description
No description provided
Readme AGPL-3.0 306 KiB
Languages
Go 98.7%
Dockerfile 0.7%
Makefile 0.6%