mirror of
https://github.com/QYG2297248353/appstore-dpanel
synced 2025-12-29 08:01:36 +08:00
Synced apps from source repository via GitHub Actions
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
mailserver:
|
||||
container_name: mailserver
|
||||
dns:
|
||||
- ${DNS1}
|
||||
- ${DNS2}
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- ./envs/mailserver.env
|
||||
- .env
|
||||
environment:
|
||||
- LOG_LEVEL=info
|
||||
- SUPERVISOR_LOGLEVEL=info
|
||||
- ACCOUNT_PROVISIONER=FILE
|
||||
- SSL_CERT_PATH=/tmp/dms/certs/${CERTS_PUBLIC_CRT:-public.crt}
|
||||
- SSL_KEY_PATH=/tmp/dms/certs/${CERTS_PRIVATE_KEY:-private.key}
|
||||
- SPOOF_PROTECTION=1
|
||||
- https_proxy=${http_proxy}
|
||||
extra_hosts:
|
||||
- ${DOMAIN_HOSTS1}
|
||||
healthcheck:
|
||||
retries: 0
|
||||
test: ss --listening --tcp | grep -P 'LISTEN.+:smtp' || exit 1
|
||||
timeout: 3s
|
||||
hostname: ${HOSTNAME_FQDN}
|
||||
image: mailserver/docker-mailserver:14.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_SMTP}:25
|
||||
- ${PANEL_APP_PORT_IMAP}:143
|
||||
- ${PANEL_APP_PORT_SMTPS}:465
|
||||
- ${PANEL_APP_PORT_ESMTP}:587
|
||||
- ${PANEL_APP_PORT_IPAPS}:993
|
||||
- ${PANEL_APP_PORT_POP}:110
|
||||
- ${PANEL_APP_PORT_POPS}:995
|
||||
- ${PANEL_APP_PORT_MANAGESIEVE}:4190
|
||||
restart: always
|
||||
stop_grace_period: 1m
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ${MAILSERVER_ROOT_PATH}/dms/mail-data/:/var/mail/
|
||||
- ${MAILSERVER_ROOT_PATH}/dms/mail-state/:/var/mail-state/
|
||||
- ${MAILSERVER_ROOT_PATH}/dms/mail-logs/:/var/log/mail/
|
||||
- ${MAILSERVER_ROOT_PATH}/dms/config/:/tmp/docker-mailserver/
|
||||
- ${MAILSERVER_ROOT_PATH}/certs/:/tmp/dms/certs/
|
||||
- ${MAILSERVER_ROOT_PATH}/dms-backups/:/backup/
|
||||
Reference in New Issue
Block a user