Skip to content
This repository was archived by the owner on Apr 11, 2026. It is now read-only.

Latest commit

 

History

History
38 lines (24 loc) · 1.23 KB

File metadata and controls

38 lines (24 loc) · 1.23 KB

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.