Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rroemhild/docker-mailpile
- Owner: rroemhild
- Created: 2015-06-02T23:19:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-11T10:39:13.000Z (about 4 years ago)
- Last Synced: 2023-03-10T19:53:44.763Z (almost 2 years ago)
- Topics: docker, email, encryption, gnupg, mailpile, security
- Language: Dockerfile
- Size: 20.5 KB
- Stars: 27
- Watchers: 4
- Forks: 21
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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'
```