A minimal Mailpile Docker image based on Alpine Linux.
1M+
A minimal Mailpile Docker image based on Alpine Linux.
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
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'
Content type
Image
Digest
sha256:5b58d53b2…
Size
52 MB
Last updated
almost 6 years ago
docker pull rroemhild/mailpile