Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rroemhild/docker-mailpile

A minimal Mailpile Docker image based on Alpine Linux.
https://github.com/rroemhild/docker-mailpile

docker email encryption gnupg mailpile security

Last synced: 3 months ago
JSON representation

A minimal Mailpile Docker image based on Alpine Linux.

Awesome Lists containing this project

README

        

# Mailpile Docker image

A minimal Mailpile Docker image based on Alpine Linux.

## Usage

```
docker run -d --name mailpile -p 33411:33411 rroemhild/mailpile
```

Bind volume `/root/.local/share/Mailpile` and `/root/.gnupg` for persistent storage:

```
docker run -d --name mailpile -p 33411:33411 -v /some/local/path:/root/.local/share/Mailpile -v /another/local/path:/root/.gnupg rroemhild/mailpile
```
## Docker-compose

```yaml
version: '3'
services:
mailpile:
container_name: mailpile
image: rroemhild/mailpile
volumes:
- '/some/local/path:/root/.local/share/Mailpile'
- '/another/local/path:/root/.gnupg'
ports:
- '33411:33411'
```