Skip to content

itefixnet/postfixadmin-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PostfixAdmin

PostfixAdmin Docker Image

A minimal Docker image for running PostfixAdmin, a web-based administration interface for mail servers. Easily deploy PostfixAdmin with your own configuration and connect to any external database.

Ready-to-use Image

A ready-to-use Docker image is available on Docker Hub: https://hub.docker.com/r/itefixnet/postfixadmin

Usage

You can run PostfixAdmin using Docker with your own external database.

  1. Copy or edit the provided config.local.php file in this repository to match your environment.

  2. Run the container:

docker run -d \
  -p 8080:80 \
  -v "$PWD/config.local.php:/var/www/html/config.local.php:ro" \
  --name postfixadmin \
  itefixnet/postfixadmin:latest
  1. Access PostfixAdmin at http://localhost:8080/setup.php to complete the installation.

Build Instructions

If you want to build the Docker image yourself instead of using the pre-built image from Docker Hub, run:

docker build -t postfixadmin-local .

You can then use your local image by replacing itefixnet/postfixadmin:latest with postfixadmin-local in the run command.

About

A minimal Docker image for running PostfixAdmin

Topics

Resources

License

Stars

Watchers

Forks