RainLoop fork.
Go to file
Stanislav Nikitin 013c73bc11
continuous-integration/drone/push Build was killed Details
Fix duplicate CI step name.
2022-07-29 10:53:21 +05:00
configs Initial commit. Version 2.17.0. 2022-07-29 10:52:25 +05:00
.drone.yml Fix duplicate CI step name. 2022-07-29 10:53:21 +05:00
.gitlab-ci.yml Initial commit. Version 2.17.0. 2022-07-29 10:52:25 +05:00
Dockerfile Initial commit. Version 2.17.0. 2022-07-29 10:52:25 +05:00
README.md Initial commit. Version 2.17.0. 2022-07-29 10:52:25 +05:00

README.md

SnappyMail webmail Docker container

This repository contains Snappymail 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/snappymail/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 (do not forget to replace version with needed one!):

version: "2.4"

services:
  rainloop:
    restart: always
    image: "code.pztrn.name/containers/snappymail:2.17.0"
    volumes:
      - "/root/snappymail/data:/var/www/snappymail/data"
    ports:
      - "5480:80"
    cpus: 2
    mem_limit: 1G
    memswap_limit: 0