Skip to content

Commit

Permalink
Updated docker-compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiorauber committed Jun 13, 2022
1 parent 58bde18 commit 97d8ed7
Showing 1 changed file with 36 additions and 27 deletions.
63 changes: 36 additions & 27 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
pdns:
#build: pdns
image: interlegis/powerdns:4.4.0
links:
- "mysql:mysql"
ports:
- "53:53"
- "53:53/udp"
- "8088:8081"
environment:
- PDNSCONF_API_KEY=a_strong_api_key
- PDNSCONF_DNSUPDATE=yes
- SECALLZONES_CRONJOB=yes
version: "2.1"
services:
pdns:
build: pdns
#image: interlegis/powerdns:4.4.0
links:
- "mysql:mysql"
ports:
- "53:53"
- "53:53/udp"
- "8088:8081"
environment:
- PDNSCONF_API_KEY=a_strong_api_key
- PDNSCONF_DNSUPDATE=yes
- SECALLZONES_CRONJOB=yes
- PDNSCONF_GMYSQL_USER=pdns
- PDNSCONF_GMYSQL_DBNAME=pdns
- PDNSCONF_GMYSQL_PASSWORD=pdnspw

mysql:
image: bitnami/mariadb:10.1.14-r3
environment:
- MARIADB_ROOT_PASSWORD=mysqlrootpw
- MARIADB_REPLICATION_MODE=master
- MARIADB_REPLICATION_USER=repl_user
- MARIADB_REPLICATION_PASSWORD=repl_password
- MARIADB_DATABASE=pdns
- MARIADB_USER=pdns
- MARIADB_PASSWORD=pdnspw
volumes:
- dnsmasterdb:/bitnami/mariadb
ports:
- 3306:3306
mysql:
image: bitnami/mariadb:10.7.4-debian-11-r1
environment:
- MARIADB_ROOT_PASSWORD=mysqlrootpw
- MARIADB_REPLICATION_MODE=master
- MARIADB_REPLICATION_USER=repl_user
- MARIADB_REPLICATION_PASSWORD=repl_password
- MARIADB_DATABASE=pdns
- MARIADB_USER=pdns
- MARIADB_PASSWORD=pdnspw
volumes:
- dnsmasterdb:/bitnami/mariadb
ports:
- 3306:3306

volumes:
dnsmasterdb:
driver: local

0 comments on commit 97d8ed7

Please sign in to comment.