24 lines
694 B
Django/Jinja
24 lines
694 B
Django/Jinja
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:
|
|
- {{ nameserver_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_PLUGINS=archive,zipdownload,managesieve,markasjunk
|
|
- ROUNDCUBEMAIL_SMTP_PORT=587
|