For more details: https://poste.io/doc/getting-started
Created
March 10, 2022 20:18
-
-
Save muratcorlu/2dd17f06c75a2514408a7f9bb8bea83b to your computer and use it in GitHub Desktop.
Running self-hosting mail server with Poste.io and docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
mailserver: | |
image: analogic/poste.io | |
container_name: mailserver | |
restart: unless-stopped | |
network_mode: "host" | |
ports: | |
- "25:25" | |
- "80:80" | |
- "110:110" | |
- "143:143" | |
- "465:465" | |
- "587:587" | |
- "993:993" | |
- "995:995" | |
- "4190:4190" | |
environment: | |
- [email protected] | |
- LETSENCRYPT_HOST=mail.example.com | |
- VIRTUAL_HOST=mail.example.com | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /mnt/poste:/da |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment