A PowerDNS web interface with advanced features. Based on ngoduykhanh/PowerDNS-Admin
341
This image installs PowerDNS Admin application. As it's code is not tagged, we juts build it for the latest relase.
This image is also inspired by its fork
version: '2'
services:
pdnsadmin:
image: mikroways/powerdns-admin
environment:
SECRET_KEY: 'a-very-secret-key'
SQLA_DB_USER: root
SQLA_DB_PASSWORD: root_pass
SQLA_DB_HOST: db
SQLA_DB_NAME: pdnsadmin
LOG_LEVEL: info
PDNS_STATS_URL: http://powerdns.example.com/
PDNS_API_KEY: 'powerdns-api-key'
ports:
- 9191:9191
depends_on:
- db
links:
- db
db:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: root_pass
MYSQL_DATABASE: pdnsadmin
volumes:
- pdns-db:/var/lib/mysql
volumes:
pdns-db:
If you take a look at docker-entrypoint.sh you can see which configuration
options are accepted. For the moment, not every accepted option is supported.
All available options are available within config_template.py
Content type
Image
Digest
Size
344.6 MB
Last updated
about 8 years ago
docker pull mikroways/powerdns-admin