Merge remote-tracking branch 'origin/master'

# Conflicts:
#	DDNSUpdater/Services/DDNSService.cs
#	docker-compose.yml
This commit is contained in:
Elias Stepanik 2023-03-15 13:33:55 +01:00
commit e6f7ba13b7
2 changed files with 4 additions and 4 deletions

View File

@ -30,12 +30,12 @@ To use the IonosDynamicDNSUpdater, follow these steps:
### Running in a Docker container
1. Build the Docker image using `docker build -t ionosdynamicdnsupdater .`.
2. Run the Docker container using `docker run -d ionosdynamicdnsupdater`.
2. Run the Docker container using `docker run -d -e API_KEY=<your_api_key> -e DOMAINS=<comma_separated_list_of_domains> ionosdynamicdnsupdater`.
### Using Docker Compose
1. Create an API token in Ionos.
2. Replace the placeholder values in `appsettings.json` with your Ionos API token and the hostname for the DNS record you want to update.
2. Replace the placeholder values in `docker-compose.yml` with your Ionos API token and the hostname for the DNS record you want to update.
3. Start the services using `docker-compose up -d`.
## Contributing

View File

@ -7,5 +7,5 @@ services:
tty: true
stdin_open: true
environment:
Domains_0: "*.test.de;Key"
Domains_1: "*.test.de;Key"
API_Key: ""
DOMAINS: "subdomain.domain.de,domain.de"