docs: README, changelog, contributing, security, deployment, operations, CI
This commit is contained in:
commit
bdfd8027f4
12 changed files with 551 additions and 0 deletions
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
version: "3.8"
|
||||
|
||||
services:
|
||||
dns-traefik-sync:
|
||||
image: <REGISTRY>/laurence/dns-traefik-sync:latest
|
||||
environment:
|
||||
TRAEFIK_API: "http://<TARGET_IP>:8080"
|
||||
DNS_SERVER: "<DNS_SERVER_IP>"
|
||||
DNS_ZONE: "<DNS_ZONE>"
|
||||
TARGET_IP: "<TARGET_IP>"
|
||||
TTL: "300"
|
||||
POLL_INTERVAL: "60"
|
||||
KEYTAB: "/run/secrets/dns-updater-keytab"
|
||||
KRB_PRINCIPAL: "dns-updater@<REALM>"
|
||||
secrets:
|
||||
- dns-updater-keytab
|
||||
restart: unless-stopped
|
||||
|
||||
secrets:
|
||||
dns-updater-keytab:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue