In this post we will deploy Zimbra Mail server in the Docker containers.
1. First we need to install Docker engine and Compose:
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
2. Next pull the repository:
git clone https://github.com/isobby94/zimbra-docker.git
3. Edit the file docker-compose.yml and set hostname and password.
4. Create a persistent network for Zimbra container:
docker network create zimbra
5. Build and run Zimbra container:
docker compose up -d --build
6. Check container status:
docker ps