initial import
This commit is contained in:
40
README.md
Normal file
40
README.md
Normal file
@@ -0,0 +1,40 @@
|
||||
# docker-smtp-relay
|
||||
|
||||
[](https://drone.asperti.com/paspo/docker-smtp-relay)
|
||||
|
||||
SMTP relay for specific domains
|
||||
|
||||
## available tags
|
||||
|
||||
| tag | description |
|
||||
| ------------ | ----------------------------------- |
|
||||
| latest | multi-arch manifest |
|
||||
| latest-amd64 | latest build for amd64 architecture |
|
||||
| latest-arm64 | latest build for arm64 architecture |
|
||||
|
||||
## build
|
||||
|
||||
```bash
|
||||
docker build . -t docker.asperti.com/paspo/smtp-relay
|
||||
```
|
||||
|
||||
## run
|
||||
|
||||
With `docker compose`:
|
||||
|
||||
```yaml
|
||||
services:
|
||||
relay:
|
||||
image: docker.asperti.com/paspo/smtp-relay:latest
|
||||
restart: always
|
||||
container_name: smtp-relay
|
||||
volumes:
|
||||
- ./config:/config
|
||||
environment:
|
||||
- MYHOSTNAME=smtprelay.mydomain.com
|
||||
ports:
|
||||
- 25:25
|
||||
logging:
|
||||
options:
|
||||
max-size: 10m
|
||||
```
|
||||
Reference in New Issue
Block a user