{"id":15714082,"url":"https://github.com/d1ceward/scaleway-ddns","last_synced_at":"2026-01-19T09:01:34.867Z","repository":{"id":57790188,"uuid":"526017532","full_name":"d1ceward/scaleway-ddns","owner":"d1ceward","description":"Simple Scaleway dynamic DNS service using API","archived":false,"fork":false,"pushed_at":"2025-12-22T16:34:11.000Z","size":306,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-24T04:44:37.418Z","etag":null,"topics":["api","crystal","ddns","scaleway"],"latest_commit_sha":null,"homepage":"https://d1ceward.github.io/scaleway-ddns/","language":"Crystal","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/d1ceward.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-18T01:52:38.000Z","updated_at":"2025-08-24T22:19:34.000Z","dependencies_parsed_at":"2024-01-09T16:54:32.438Z","dependency_job_id":"db463200-f5be-4c35-a2f1-fc9a3b04b684","html_url":"https://github.com/d1ceward/scaleway-ddns","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/d1ceward/scaleway-ddns","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d1ceward%2Fscaleway-ddns","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d1ceward%2Fscaleway-ddns/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d1ceward%2Fscaleway-ddns/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d1ceward%2Fscaleway-ddns/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d1ceward","download_url":"https://codeload.github.com/d1ceward/scaleway-ddns/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d1ceward%2Fscaleway-ddns/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28565001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T08:53:44.001Z","status":"ssl_error","status_checked_at":"2026-01-19T08:52:40.245Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","crystal","ddns","scaleway"],"created_at":"2024-10-03T21:34:41.784Z","updated_at":"2026-01-19T09:01:34.857Z","avatar_url":"https://github.com/d1ceward.png","language":"Crystal","funding_links":[],"categories":[],"sub_categories":[],"readme":"# scaleway-ddns (v2.1.1)\n![GitHub Workflow Status (main)](https://github.com/d1ceward/scaleway-ddns/actions/workflows/main.yml/badge.svg?branch=master)\n[![Docker Pulls](https://img.shields.io/docker/pulls/d1ceward/scaleway-ddns.svg?logo=docker)](https://hub.docker.com/r/d1ceward/scaleway-ddns)\n[![GHCR](https://img.shields.io/badge/GHCR-Available-blue?logo=github)](https://github.com/users/d1ceward/packages/container/package/scaleway-ddns)\n[![GitHub issues](https://img.shields.io/github/issues/d1ceward/scaleway-ddns)](https://github.com/d1ceward/scaleway-ddns/issues)\n[![GitHub license](https://img.shields.io/github/license/d1ceward/scaleway-ddns)](https://github.com/d1ceward/scaleway-ddns/blob/master/LICENSE)\n\nSimple Scaleway dynamic DNS service by API written in Crystal.\n\n:rocket: Suggestions for new improvements are welcome in the issue tracker.\n\n## Installation and Usage\n\n### Docker\n\nYou can run `scaleway-ddns` using Docker or Docker Compose. Replace example values with your actual configuration.\n\n#### Docker Hub\n\nRun directly from Docker Hub:\n\n```shell\ndocker run -d \\\n  --name scaleway-ddns \\\n  -e SCW_SECRET_KEY=\"your-scaleway-secret-key\" \\\n  -e IDLE_MINUTES=\"10\" \\\n  -e DOMAIN_LIST=\"myfirstdomain.com,anotherone.com\" \\\n  -e ENABLE_IPV4=\"true\" \\\n  -e ENABLE_IPV6=\"false\" \\\n  d1ceward/scaleway-ddns:latest\n```\n\n#### GitHub Packages\n\nRun from GitHub Container Registry:\n\n```shell\ndocker run -d \\\n  --name scaleway-ddns \\\n  -e SCW_SECRET_KEY=\"your-scaleway-secret-key\" \\\n  -e IDLE_MINUTES=\"10\" \\\n  -e DOMAIN_LIST=\"myfirstdomain.com,anotherone.com\" \\\n  -e ENABLE_IPV4=\"true\" \\\n  -e ENABLE_IPV6=\"false\" \\\n  ghcr.io/d1ceward/scaleway-ddns:latest\n```\n\n#### Docker Compose\n\nRecommended for multi-container setups or easier management:\n\n```yaml\nservices:\n  scaleway_ddns:\n    image: d1ceward/scaleway-ddns:latest # Use Docker Hub image\n    # Or use GitHub Packages:\n    # image: ghcr.io/d1ceward/scaleway-ddns:latest\n    restart: unless-stopped\n    environment:\n      SCW_SECRET_KEY: your-scaleway-secret-key\n      IDLE_MINUTES: 10\n      DOMAIN_LIST: myfirstdomain.com,anotherone.com\n      ENABLE_IPV4: true   # Optional, enables IPv4 address updates (default: true)\n      ENABLE_IPV6: false  # Optional, enables IPv6 address updates (default: false)\n```\n\n**Environment Variables:**\n- `SCW_SECRET_KEY` (**required**): Your Scaleway API secret key.\n- `IDLE_MINUTES`: Minutes between IP checks (default: 60).\n- `DOMAIN_LIST`: Comma-separated domains to update.\n- `ENABLE_IPV4`: Set to `true` or `false` to enable/disable IPv4 updates.\n- `ENABLE_IPV6`: Set to `true` or `false` to enable/disable IPv6 updates.\n\n---\n\n### Linux\n\nDownload the executable:\n\n```shell\nwget --no-verbose -O scaleway-ddns https://github.com/d1ceward/scaleway-ddns/releases/download/v2.1.1/scaleway-ddns-linux-amd64\n```\n\nMake it executable:\n\n```shell\nchmod +x scaleway-ddns\n```\n\nRun the service:\n\n```shell\n./scaleway-ddns run\n```\n\nDocumentation available here : https://d1ceward.github.io/scaleway-ddns/\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/d1ceward/scaleway-ddns. By contributing you agree to abide by the Code of Merit.\n\n1. Fork it (\u003chttps://github.com/d1ceward/scaleway-ddns/fork\u003e)\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request\n\n## Development building and running\n\n1. Install corresponding version of Crystal lang (cf: `.crystal-version` file)\n2. Install Crystal dependencies with `shards install`\n3. Build with `shards build`\n\nThe newly created binary should be at `bin/scaleway-ddns`\n\n### Running tests\n\n```shell\ncrystal spec\n```\n\n## Environment Variables\n\n- `SCW_SECRET_KEY` (**required**): Secret key from Scaleway required for IP update.\n- `IDLE_MINUTES`: Number of minutes of inactivity between IP checks (default: 60, min: 1, max: 1440).\n- `DOMAIN_LIST`: Comma-separated list of domains to update (e.g., `example.com,another.com`).\n- `ENABLE_IPV4`: Enables IPv4 address updates. Set to `false` to disable (default: `true`).\n- `ENABLE_IPV6`: Enables IPv6 address updates. Set to `true` to enable (default: `false`).\n\n## Contributors\n\n- [d1ceward](https://github.com/d1ceward) - creator and maintainer\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd1ceward%2Fscaleway-ddns","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd1ceward%2Fscaleway-ddns","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd1ceward%2Fscaleway-ddns/lists"}