summaryrefslogtreecommitdiff
path: root/roles/roundcube/templates
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-01-08 02:56:59 -0500
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-01-08 02:56:59 -0500
commit2227a2c0aa044b22eff4cd5355c1f30f31bb77ad (patch)
tree9e18c094ef744125527963456fccd9d29aa1223e /roles/roundcube/templates
parentce4c85dd6f99506128bb125e26728a7416660397 (diff)
downloadoldinfra-2227a2c0aa044b22eff4cd5355c1f30f31bb77ad.tar.gz
oldinfra-2227a2c0aa044b22eff4cd5355c1f30f31bb77ad.zip
roundcube
Diffstat (limited to 'roles/roundcube/templates')
-rw-r--r--roles/roundcube/templates/docker-compose.yml.j222
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/roundcube/templates/docker-compose.yml.j2 b/roles/roundcube/templates/docker-compose.yml.j2
new file mode 100644
index 0000000..c185aa2
--- /dev/null
+++ b/roles/roundcube/templates/docker-compose.yml.j2
@@ -0,0 +1,22 @@
+version: '3'
+
+services:
+ roundcube:
+ image: roundcube/roundcubemail:latest
+ container_name: roundcubemail
+ restart: unless-stopped
+ hostname: roundcube.internal.simponic.xyz
+ volumes:
+ - ./www:/var/www/html
+ - ./db/sqlite:/var/roundcube/db
+ ports:
+ - 127.0.0.1:9002:80
+ dns:
+ - {{ johan_ip }}
+ environment:
+ - ROUNDCUBEMAIL_DB_TYPE=sqlite
+ - ROUNDCUBEMAIL_SKIN=elastic
+ - ROUNDCUBEMAIL_DEFAULT_HOST=ssl://mail.simponic.xyz
+ - ROUNDCUBEMAIL_DEFAULT_PORT=993
+ - ROUNDCUBEMAIL_SMTP_SERVER=tls://mail.simponic.xyz
+ - ROUNDCUBEMAIL_SMTP_PORT=587