Add mailserver.

This commit is contained in:
Joseph Hanson 2024-08-01 07:07:28 -05:00
parent ed4a32b7c5
commit a13e66a50e
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 29 additions and 0 deletions

23
docker-compose.yaml Normal file
View file

@ -0,0 +1,23 @@
services:
poste.io:
image: analogic/poste.io:2.3.21
container_name: posteio
tty: true
network_mode: host
restart: unless-stopped
# despite it being in network: host mode, I like seeing the ports here.
ports:
- '25:25'
- '80:80'
- '443:443'
- '110:110'
- '143:143'
- '465:465'
- '587:587'
- '993:993'
- '995:995'
environment:
- TZ=UTC
- DISABLE_CLAMAV=TRUE
volumes:
- '/opt/poste.io/data:/data'

6
renovate.json Normal file
View file

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"semanticCommits": "enabled",
"assignees": ["jahanson"]
}