Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sonquer/open-ddns
.NET Dynamic DNS Open-Source Project
https://github.com/sonquer/open-ddns
csharp ddns ddns-docker ddns-updater dns dotnet dotnet-core dynamic-dns dynamic-dns-solution dynamic-dns-updater ip ovh-dns
Last synced: 24 days ago
JSON representation
.NET Dynamic DNS Open-Source Project
- Host: GitHub
- URL: https://github.com/sonquer/open-ddns
- Owner: sonquer
- License: mit
- Created: 2021-12-05T11:00:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-29T17:24:00.000Z (about 2 years ago)
- Last Synced: 2024-10-15T03:08:32.082Z (2 months ago)
- Topics: csharp, ddns, ddns-docker, ddns-updater, dns, dotnet, dotnet-core, dynamic-dns, dynamic-dns-solution, dynamic-dns-updater, ip, ovh-dns
- Language: C#
- Homepage:
- Size: 1.37 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![OPEN_DDNS](https://user-images.githubusercontent.com/10676657/187038251-f64830b7-a3f8-46fc-bba2-0b33b4fc6b49.png)
![license](https://img.shields.io/github/license/sonquer/open-ddns?colorA=192330&colorB=c70039&style=for-the-badge)
![last-commit](https://img.shields.io/github/last-commit/sonquer/open-ddns?colorA=192330&style=for-the-badge)
![repo-size](https://img.shields.io/github/repo-size/sonquer/open-ddns?colorA=192330&style=for-the-badge)
![issues](https://img.shields.io/github/issues-raw/sonquer/open-ddns?colorA=192330&style=for-the-badge)---
[![Docker image](https://github.com/sonquer/open-ddns/actions/workflows/docker-publish.yml/badge.svg?branch=main)](https://github.com/sonquer/open-ddns/actions/workflows/docker-publish.yml)
[![CodeFactor](https://www.codefactor.io/repository/github/sonquer/open-ddns/badge)](https://www.codefactor.io/repository/github/sonquer/open-ddns)## Configuration directory & required files
```
.env/
├─ providers.json
├─ database.db
```**providers.json**
```
{
"Providers": [
{
"Provider": "OvhProvider",
"Domain": "example.com",
"SubDomain": "www",
"Secret": ""
}
]
}
```**database.db** will be generated automatically
---
## docker-compose.yml
```
version: '3.4'services:
open-ddns-host:
image: ghcr.io/sonquer/open-ddns:main
volumes:
- ./.env:/config/
ports:
- "5005:80"
``````
docker-compose up -d
```---
## Application UI
![Screenshot 2022-08-28 145418](https://user-images.githubusercontent.com/10676657/187075109-2d6150c8-7de9-4fc7-b0e6-0e6bf333b205.png)