chore(deps): update foxcpp/maddy docker tag to v0.7.1 (#842)

* 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>
This commit is contained in:
renovate[bot]
2024-01-29 15:01:49 +08:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> github-action update-app-version
parent ddb4c7be7f
commit 09b8846bb6
4 changed files with 1 additions and 1 deletions
+56
View File
@@ -0,0 +1,56 @@
additionalProperties:
formFields:
- default: 25
disabled: true
envKey: SMTP_IN_PORT
labelEn: SMTP inbound port
labelZh: SMTP 入站端口
required: true
rule: paramPort
type: number
- default: 143
disabled: true
envKey: IMAP4_PORT
labelEn: IMAP4 port
labelZh: IMAP4 端口
required: true
rule: paramPort
type: number
- default: 993
disabled: true
envKey: IMAP4_PORT2
labelEn: IMAP4 port
labelZh: IMAP4 端口
required: true
rule: paramPort
type: number
- default: 465
disabled: true
envKey: SMTP_S_PORT
labelEn: SMTP Submission ports
labelZh: SMTP 提交端口
required: true
rule: paramPort
type: number
- default: 587
disabled: true
envKey: SMTP_S_PORT2
labelEn: SMTP Submission ports
labelZh: SMTP 提交端口
required: true
rule: paramPort
type: number
- default: mail.example.com
edit: true
envKey: MAIL_HOSTNAME
labelEn: Mail MX hostname
labelZh: 邮箱 MX 主机名
required: true
type: text
- default: example.com
edit: true
envKey: MAIL_DOMAIN
labelEn: Mail domain
labelZh: 邮箱域名
required: true
type: text
+29
View File
@@ -0,0 +1,29 @@
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
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
docker volume create maddydata
@@ -0,0 +1,3 @@
#!/bin/bash
docker-compose down --volumes