Auto saved by Logseq

This commit is contained in:
matze 2023-03-04 20:51:41 +01:00
parent 7e186413e7
commit 05b4c0f059

View File

@ -1,4 +1,23 @@
- inwx ns update [[SelfHosted]]
- https://github.com/chrisb86/nsupdate
- docker-compose add #main after build.context
- ``` yml
version: '3'
services:
nsupdate:
image: nsupdate
container_name: nsupdate
build:
context: https://github.com/chrisb86/nsupdate.git#main
dockerfile: docker/Dockerfile
environment:
- SCHEDULE="*\30 * * * *"
- TZ=Europe/Berlin
- NSUPDATE_INWX_USER=monzi
- NSUPDATE_INWX_PASSWORD=9Ty#JAJaEBG6Vsc3E@FR%bmfC
volumes:
- ./data:/config
- ./log:/log
restart: unless-stopped
```
-