39 lines
922 B
YAML
39 lines
922 B
YAML
---
|
|
# domain, webroot
|
|
roundcube_domain: default
|
|
roundcube_web_root: /roundcube
|
|
|
|
# container
|
|
roundcube_image: eumau/roundcubemail
|
|
roundcube_container: roundcube
|
|
roundcube_volume: roundcube
|
|
|
|
# mysql, mariadb, postgresql
|
|
roundcube_db_type: sqlite
|
|
roundcube_db_host: localhost
|
|
roundcube_db_port: "{{ '5432' if 'post' in roundcube_db_type else '3306' }}"
|
|
roundcube_db_user: roundcube
|
|
roundcube_db_password: password
|
|
roundcube_db_name:
|
|
roundcube{{ '.sqlite' if roundcube_db_type == 'sqlite' else '' }}
|
|
|
|
# data dir (inside container)
|
|
roundcube_data_dir: /var/www/html
|
|
|
|
# imap
|
|
roundcube_imap_host: "{{ dovecot_container | default('localhost') }}"
|
|
roundcube_imap_port: "143"
|
|
|
|
# smtp
|
|
roundcube_smtp_host: "{{ dovecot_container | default('localhost') }}"
|
|
roundcube_smtp_port: "587"
|
|
|
|
# plugins
|
|
roundcube_plugins: []
|
|
|
|
# upload max filesize
|
|
roundcube_upload_max_filesize: 40M
|
|
|
|
# definido por rol docker
|
|
docker_network_name: dockernet
|