--- # domain, webroot roundcube_domain: example.com roundcube_web_root: / # container roundcube_image: roundcube 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: "" #localhost roundcube_imap_port: "" #143 # smtp roundcube_smtp_host: "" #localhost roundcube_smtp_port: "" #587 # plugins roundcube_plugins: [] # upload max filesize roundcube_upload_max_filesize: 40M # definido por rol docker docker_network_name: dockernet