Unofficial Dockerfile for alps, a simple and extensible webmail.
To use the image, pull it from DockerHub and create a container that passes the ALPS_PARAMETERS
environmental variable with alps options and server URLs.
Example docker-compose file:
version: "3"
services:
alps:
image: docker.io/alphajack/alps:latest
restart: on-failure
environment:
- ALPS_PARAMETERS="-theme alps imaps://mail.example.org:993 smtps://mail.example.org:465 caldavs://calendar.example.org carddavs://contacts.example.org"
ports:
- "8080:1323"
Official documentation for alps is available here.