mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
b1b2a0c7b5
Updated the Docker image build workflow to include the new "dev" branch.
15 lines
492 B
Markdown
15 lines
492 B
Markdown
# Installation on docker
|
|
|
|
The Docker image is powerdnsadmin/pda-legacy available on [DockerHub](https://hub.docker.com/r/powerdnsadmin/pda-legacy)
|
|
|
|
The supported environment variables to configure the container are located [here](../configuration/Environment-variables.md).
|
|
|
|
You can run the container and expose the web server on port 9191 using:
|
|
```bash
|
|
docker run -d \
|
|
-e SECRET_KEY='a-very-secret-key' \
|
|
-v pda-data:/data \
|
|
-p 9191:80 \
|
|
powerdnsadmin/pda-legacy:latest
|
|
```
|