use file permission to disable services
This commit is contained in:
parent
cab0fcdb08
commit
5bffcd541e
4 changed files with 3 additions and 2 deletions
26
posteio/docker-compose.posteio.yml
Normal file
26
posteio/docker-compose.posteio.yml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
poste-io:
|
||||
container_name: poste-io
|
||||
image: analogic/poste.io
|
||||
volumes:
|
||||
- ${ROOT_INSTALL}/data/poste.io:/data
|
||||
environment:
|
||||
- TZ=${TZ}
|
||||
- HTTPS=OFF
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "465:465"
|
||||
- "993:993"
|
||||
- "25:25"
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.posteio.rule=Host(`${HOST_MAIL}.${DOMAIN}`)
|
||||
- traefik.http.routers.posteio.entrypoints=websecure
|
||||
- traefik.http.routers.posteio.tls=true
|
||||
- traefik.http.services.posteio.loadbalancer.server.port=80
|
||||
networks:
|
||||
- srv
|
||||
healthcheck:
|
||||
disable: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue