Roundcube Docker container:
Run it like this:
docker run -d -p 80:80 robbertkl/roundcube
Or you could use a separate data container, for example:
docker create --name roundcube_data robbertkl/roundcube true
docker run --name roundcube -d --volumes-from roundcube_data -p 80:80 robbertkl/roundcube
To configure Roundcube, you can use ROUNDCUBE_ environment variables for all regular configuration option (e.g. ROUNDCUBE_DEFAULT_HOST, ROUNDCUBE_SMTP_SERVER, etc). Additionally, the password plugin file driver adds a ROUNDCUBE_USER_FILE variable to set the path to password file.
This repo is published under the MIT License.
Content type
Image
Digest
sha256:c36c40675…
Size
126.6 MB
Last updated
over 7 years ago
docker pull robbertkl/roundcube