Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stoakes/mailer
A containerized, config-free Debian + postfix that works smoothly. Send mail out of the box !
https://github.com/stoakes/mailer
Last synced: about 3 hours ago
JSON representation
A containerized, config-free Debian + postfix that works smoothly. Send mail out of the box !
- Host: GitHub
- URL: https://github.com/stoakes/mailer
- Owner: Stoakes
- License: mit
- Created: 2017-10-31T07:32:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T14:17:53.000Z (over 6 years ago)
- Last Synced: 2024-11-09T16:48:08.907Z (about 2 months ago)
- Homepage: https://hub.docker.com/r/stoakes/mailer/
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stoakes mailer
> Containerized smtp server (Debian + postfix) that works out of the box.
![](https://img.shields.io/docker/stars/stoakes/mailer.svg)![](https://img.shields.io/docker/pulls/stoakes/mailer.svg)
![](https://img.shields.io/docker/automated/stoakes/mailer.svg)
![](https://images.microbadger.com/badges/image/stoakes/mailer.svg)This image is a configuration free Debian stretch running postfix image. It provides a SMTP configured for websites to send emails from any container connected to the docker network.
Contrary to other available images, it has a low number of layer and is designed to be as small as possible. (Even though we are using Debian)
## Available Versions
You can see all images available to pull from Docker Hub via the [Tags page](https://hub.docker.com/r/stoakes/mailer/tags/).
## Usage Example
**Standalone**
```
docker run stoakes/mailer
```**Docker-compose**
```
version: "2"services:
web:
image: whatever
depends_on:
- mailermailer:
image: stoakes/mailer
```Then use the mailer in your web container (pseudo code)
```
mailer_transport: smtp
mailer_host: mailer
mailer_user: ~ # That means none
mailer_password: ~
```## Features
Running on Debian Stretch
* Postfix
* Syslog-ng to retrieve postfix logs## Environment Variables
None
## Maintainers
[Stoakes](https://github.com/stoakes)