mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 13:06:56 +08:00
09b8846bb6
* chore(deps): update foxcpp/maddy docker tag to v0.7.1 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
30 lines
579 B
YAML
30 lines
579 B
YAML
version: '3'
|
|
services:
|
|
maddymail:
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${SMTP_IN_PORT}:25"
|
|
- "${IMAP4_PORT}:143"
|
|
- "${SMTP_S_PORT}:465"
|
|
- "${SMTP_S_PORT2}:587"
|
|
- "${IMAP4_PORT2}:993"
|
|
volumes:
|
|
- maddydata:/data
|
|
environment:
|
|
- MADDY_HOSTNAME=${MAIL_HOSTNAME}
|
|
- MADDY_DOMAIN=${MAIL_DOMAIN}
|
|
image: foxcpp/maddy:0.7.1
|
|
labels:
|
|
createdBy: "Apps"
|
|
|
|
volumes:
|
|
maddydata:
|
|
external: true
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|