From e566c819faf61a6a4ad2f844cacaad593465bd8e Mon Sep 17 00:00:00 2001 From: sf Date: Fri, 8 Oct 2021 16:33:45 +0200 Subject: [PATCH] initial --- docker-compose.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ce4d218 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +version: '3' + +services: + webmail: + image: roundcube/roundcubemail + environment: + ROUNDCUBEMAIL_DEFAULT_HOST: tls://mail.xfx1.de + ROUNDCUBEMAIL_SMTP_SERVER: tls://mail.xfx1.de + ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE: 10M + logging: + driver: journald + options: + tag: webmail + ports: + - 8098:80 + restart: unless-stopped +