Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentberry authored Jan 3, 2024
1 parent b3dec13 commit d6d8269
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,24 @@ services:
restart: unless-stopped
````
Les logs sont stocké dans le docker `/usr/src/app/log`
Des DNS si besoin pour le ping peut être spécifié

````DockercomposeDns.yml
version: '3'
services:
ddns:
image: vincentberry/ddns-online-scaleway
volumes:
- /MonDossier/log:/usr/src/app/log
environment:
- ONLINE_TOKEN=MonTokenOniline.Net
- DOMAINS=exemple.fr,exemple-2.fr
- SUBDOMAINS=@,*
- TYPES=A
dns:
-8.8.8.8
restart: unless-stopped
````

## Comment Utiliser le Script avec Docker Compose (sans dockerhub)
1. Téléchargement du Script: Téléchargez le script ddns_update.php depuis le référentiel GitHub.
Expand All @@ -77,7 +95,8 @@ services:
- DOMAINS=exemple.fr,exemple-2.fr
- SUBDOMAINS=@,*
- TYPES=A
dns: 8.8.8.8
dns:
-8.8.8.8
command: ["php", "/usr/src/app/ddns_update.php"]
restart: unless-stopped
````
Expand Down

0 comments on commit d6d8269

Please sign in to comment.