This container runs a php-enabled apache instance, serving a pdnsmanager installation.
It's based on php:7.3-apache and contains all necessary PHP extensions for pdnsmanager. Image size is around 50MB.
pdnsmanager saves its configuration under backend/config/ConfigUser.php.
To make your configuration persietent between restarts and image updates, add
-v /local/path/config.php:/etc/pdnsmanager/ConfigUser.php to your docker run command.
/etc/pdnsmanager/ConfigUser.php is a volume that's symlinked to the proper path.
version: '3.3'
services:
pdnsmanager:
image: alexdo/pdnsmanager:latest
volumes:
- ./ConfigUser.php:/etc/pdnsmanager/ConfigUser.php
ports:
- 7777:80
Important: Initialize ./ConfigUser.php with empty contents before running docker-compose up.
Content type
Image
Digest
Size
130.7 MB
Last updated
over 7 years ago
docker pull alexdo/pdnsmanager