diff options
Diffstat (limited to 'roles/roundcube/templates/docker-compose.yml.j2')
-rw-r--r-- | roles/roundcube/templates/docker-compose.yml.j2 | 22 |
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 |