This container hosts the Roundcube web mail service for OpenEMAIL.
489
This container hosts the RoundCube web mail service for OpenEMAIL. It is based on the official roundcube/roundcubemail
Add the follwing codes to your OpenEMAIL docker-compose.yml file to intergrate Roundcube web mail into your OpenEMAIL installation.
roundcube-openemail:
image: openemail/roundcube:latest
container_name: roundcube
environment:
- TZ=${TZ}
- ROUNDCUBEMAIL_DEFAULT_HOST=dovecot
- ROUNDCUBEMAIL_DEFAULT_PORT=143
- ROUNDCUBEMAIL_SMTP_SERVER=postfix
- ROUNDCUBEMAIL_SMTP_PORT=587
- ROUNDCUBEMAIL_PLUGINS=archive,zipdownload
- ROUNDCUBEMAIL_UPLOAD_MAX_FILESIZE=25M
- ROUNDCUBEMAIL_DB_TYPE=mysql
- ROUNDCUBEMAIL_DB_HOST=mysql
- ROUNDCUBEMAIL_DB_PORT=3306
- ROUNDCUBEMAIL_DB_USER=${DBUSER}
- ROUNDCUBEMAIL_DB_PASSWORD=${DBPASS}
- ROUNDCUBEMAIL_DB_NAME=roundcube
volumes:
- ./data/roundcube/config/:/var/roundcube/config/
depends_on:
- mysql-openemail
restart: always
dns:
- ${IPV4_NETWORK:-172.22.1}.254
networks:
openemail-network:
aliases:
- roundcube
Content type
Image
Digest
Size
200.8 MB
Last updated
about 5 years ago
docker pull openemail/roundcube