Rainloop Webmail Docker container.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Stanislav Nikitin 3156d3d007
continuous-integration/drone/push Build is passing Details
Fix building process.
9 months ago
configs Fix nginx configuration to not cache requests bodys. 3 years ago
.drone.yml Switch to mirrorred images for Drone and Docker. 9 months ago
.gitlab-ci.yml Gitlab CI config update. 2 years ago
Dockerfile Fix building process. 9 months ago
README.md Add docker-compose example to README. 1 year ago

README.md

Rainloop webmail Docker container

This repository contains Rainloop webmail Docker container build scripts and neccessary configuration files.

Persistent things

There are some things that should be preserved between container's restarts. Please, add new volume for /var/www/rainloop/data directory.

If you're binding directory except of creating volume please do proper chown:

chown -R 100:101 /dir/with/data

Use with docker-compose

You may use this image with docker-compose like that:

version: "2.4"

services:
  rainloop:
    restart: always
    image: "pztrn/rainloop:1.16.0"
    volumes:
      - "/root/rainloop/data:/var/www/rainloop/data"
    ports:
      - "5480:80"
    cpus: 2
    mem_limit: 1G
    memswap_limit: 0