mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-07-03 15:45:43 +00:00
initial commit
This commit is contained in:
46
rainloop/README.md
Normal file
46
rainloop/README.md
Normal file
@ -0,0 +1,46 @@
|
||||
## wonderfall/rainloop
|
||||
[](https://imagelayers.io/?images=wonderfall/rainloop:latest 'Get your own badge on imagelayers.io')
|
||||
|
||||

|
||||
|
||||
#### What is this?
|
||||
Rainloop is a SIMPLE, MODERN & FAST WEB-BASED EMAIL CLIENT. More info on the [official website](http://www.rainloop.net/).
|
||||
|
||||
#### Features
|
||||
- Based on Alpine 3.3
|
||||
- Latest Rainloop **Community Edition** (stable)
|
||||
- Extremely lightweight
|
||||
- Contacts (DB) : sqlite, or mysql (server not built-in)
|
||||
|
||||
#### Environment variables
|
||||
- **GID** : rainloop group id.
|
||||
- **UID** : rainloop user id.
|
||||
|
||||
#### Volumes
|
||||
- **/rainloop/data** : rainloop's data
|
||||
|
||||
#### Docker Compose (example)
|
||||
```
|
||||
rainloop:
|
||||
image: wonderfall/rainloop
|
||||
environment:
|
||||
- GID=1000
|
||||
- UID=1000
|
||||
volumes:
|
||||
- /mnt/rainloop:/rainloop/data
|
||||
|
||||
# if using mysql as contacts database
|
||||
|
||||
db_rainloop:
|
||||
image: mariadb:10
|
||||
volumes:
|
||||
- /mnt/rainloop/db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=supersecretpassword
|
||||
- MYSQL_DATABASE=rainloop
|
||||
- MYSQL_USER=rainloop
|
||||
- MYSQL_PASSWORD=supersecretpassword
|
||||
```
|
||||
|
||||
#### Reverse proxy
|
||||
https://github.com/Wonderfall/dockerfiles/tree/master/reverse
|
Reference in New Issue
Block a user