Files
selfhosting/posteio/docker-compose.posteio.yml
T

30 lines
689 B
YAML
Raw Normal View History

2020-06-28 12:07:54 +02:00
version: '3'
services:
poste-io:
container_name: poste-io
image: analogic/poste.io
2022-03-05 14:59:24 +01:00
profiles: ["disabled"]
2020-06-28 12:07:54 +02:00
volumes:
2020-07-08 10:53:49 +02:00
- ${ROOT_INSTALL}/data/poste.io:/data
2020-06-28 12:07:54 +02:00
environment:
- TZ=${TZ}
- HTTPS=OFF
restart: unless-stopped
ports:
- "465:465"
- "993:993"
- "25:25"
expose:
- 80
2020-06-28 12:07:54 +02:00
labels:
- traefik.enable=true
- traefik.http.routers.posteio.rule=Host(`${HOST_MAIL}.${DOMAIN}`)
2021-11-01 20:26:33 +01:00
- traefik.http.routers.posteio.entrypoints=https
2020-06-30 20:25:23 +02:00
- traefik.http.routers.posteio.tls=true
2021-12-12 12:02:11 +01:00
- traefik.docker.network=posteio-frontend
2020-06-28 12:07:54 +02:00
networks:
2021-12-12 12:02:11 +01:00
- posteio-frontend
2020-07-25 15:07:37 +02:00
healthcheck:
disable: true