2016-05-05 09:15:35 +02:00
|
|
|
# hardware/rainloop
|
|
|
|
|
|
|
|
![](https://i.goopics.net/nI.png)
|
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
### What is this ?
|
|
|
|
|
2016-05-13 09:20:21 +02:00
|
|
|
Rainloop is a simple, modern & fast web-based client. More details on the [official website](http://www.rainloop.net/).
|
2016-05-05 09:15:35 +02:00
|
|
|
|
|
|
|
### Features
|
2016-09-24 12:46:58 +02:00
|
|
|
|
|
|
|
- Lightweight & secure image (no root process)
|
2016-12-05 20:15:55 +01:00
|
|
|
- Based on Alpine
|
2016-05-05 09:15:35 +02:00
|
|
|
- Latest Rainloop **Community Edition** (stable)
|
2018-03-05 06:17:41 -03:00
|
|
|
- Contacts (DB) : sqlite, mysql or pgsql (server not built-in)
|
2016-09-24 12:46:58 +02:00
|
|
|
- With Nginx and PHP7
|
2018-02-03 21:34:59 +01:00
|
|
|
- Postfixadmin-change-password plugin
|
2016-05-05 09:15:35 +02:00
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
### Build-time variables
|
2016-05-05 09:15:35 +02:00
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
- **GPG_FINGERPRINT** : fingerprint of signing key
|
2016-05-05 09:15:35 +02:00
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
### Ports
|
2016-05-13 09:20:21 +02:00
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
- **8888**
|
2016-05-13 09:20:21 +02:00
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
### Environment variables
|
2016-05-13 09:20:21 +02:00
|
|
|
|
2016-09-24 12:46:58 +02:00
|
|
|
| Variable | Description | Type | Default value |
|
|
|
|
| -------- | ----------- | ---- | ------------- |
|
2016-12-05 20:15:55 +01:00
|
|
|
| **UID** | rainloop user id | *optional* | 991
|
|
|
|
| **GID** | rainloop group id | *optional* | 991
|
2017-08-27 16:31:04 +02:00
|
|
|
| **UPLOAD_MAX_SIZE** | Attachment size limit | *optional* | 25M
|
2016-05-13 09:20:21 +02:00
|
|
|
|
2017-08-27 16:31:04 +02:00
|
|
|
### Docker-compose.yml
|
2016-05-13 09:20:21 +02:00
|
|
|
|
2017-08-27 16:31:04 +02:00
|
|
|
```yml
|
|
|
|
# Full example :
|
|
|
|
# https://github.com/hardware/mailserver/blob/master/docker-compose.sample.yml
|
2016-05-13 09:20:21 +02:00
|
|
|
|
2016-05-05 09:15:35 +02:00
|
|
|
rainloop:
|
|
|
|
image: hardware/rainloop
|
|
|
|
container_name: rainloop
|
|
|
|
volumes:
|
|
|
|
- /mnt/docker/rainloop:/rainloop/data
|
2017-08-27 16:31:04 +02:00
|
|
|
depends_on:
|
|
|
|
- mailserver
|
2016-05-05 09:15:35 +02:00
|
|
|
```
|
|
|
|
|
2017-08-27 16:31:04 +02:00
|
|
|
#### How to setup
|
2016-05-05 09:15:35 +02:00
|
|
|
|
2017-08-27 16:31:04 +02:00
|
|
|
https://github.com/hardware/mailserver/wiki/Rainloop-initial-configuration
|