amcedns to enable Let's Encrypt DNS-01 challenges
Some checks failed
/ Ansible Lint (push) Failing after 38s
Some checks failed
/ Ansible Lint (push) Failing after 38s
This commit is contained in:
parent
c33ae36af3
commit
0f3cd2c70a
11 changed files with 463 additions and 1 deletions
22
resources/chaosknoten/acmedns/docker_compose/compose.yaml.j2
Normal file
22
resources/chaosknoten/acmedns/docker_compose/compose.yaml.j2
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
services:
|
||||
oauth2-proxy:
|
||||
container_name: oauth2-proxy
|
||||
image: quay.io/oauth2-proxy/oauth2-proxy:v7.14.2
|
||||
command: --config /oauth2-proxy.cfg
|
||||
hostname: oauth2-proxy
|
||||
volumes:
|
||||
- "./configs/oauth2-proxy.cfg:/oauth2-proxy.cfg"
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 4180:4180
|
||||
|
||||
acmedns:
|
||||
image: docker.io/joohoi/acme-dns:latest
|
||||
ports:
|
||||
- "[::]:53:53"
|
||||
- "[::]:53:53/udp"
|
||||
- 8080:80
|
||||
volumes:
|
||||
- ./configs/acmedns.cfg:/etc/acme-dns/config.cfg:ro
|
||||
- ./data/acmedns:/var/lib/acme-dns
|
||||
Loading…
Add table
Add a link
Reference in a new issue