mirror of
https://gitea.zaclys.com/yannic/selfhosting.git
synced 2026-04-25 17:00:40 +02:00
add poste.io
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
DOMAIN=localhost.localdomain
|
DOMAIN=localhost.localdomain
|
||||||
HOST_GLANCES=glances
|
HOST_GLANCES=glances
|
||||||
HOST_PORTAINER=portainer
|
HOST_PORTAINER=portainer
|
||||||
|
HOST_MAIL=mail
|
||||||
TZ=Europe/Paris
|
TZ=Europe/Paris
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
poste-io:
|
||||||
|
container_name: poste-io
|
||||||
|
image: analogic/poste.io
|
||||||
|
volumes:
|
||||||
|
- /srv/data/poste.io:/data
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ}
|
||||||
|
- HTTPS=OFF
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "587:587"
|
||||||
|
- "465:465"
|
||||||
|
- "993:993"
|
||||||
|
- "25:25"
|
||||||
|
labels:
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.routers.posteio.rule=Host(`${HOST_MAIL}.${DOMAIN}`)
|
||||||
|
- traefik.http.routers.posteio.entrypoints=web
|
||||||
|
- traefik.http.services.posteio.loadbalancer.server.port=80
|
||||||
|
networks:
|
||||||
|
- srv
|
||||||
Reference in New Issue
Block a user