No description
Find a file
Paolo Asperti f8e2470de1
All checks were successful
Container Publish / on-success-skip (push) Has been skipped
Container Publish / build-image (amd64) (push) Successful in 24s
Container Publish / build-image (arm64) (push) Successful in 24s
Container Publish / update docker manifest (push) Successful in 10s
Configure Renovate (#1)
Welcome to [Renovate](https://github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.

---
### Detected Package Files

 * `Dockerfile` (dockerfile)
 * `.forgejo/workflows/build_and_publish.yaml` (github-actions)
 * `.forgejo/workflows/vulnscan.yaml` (github-actions)

### What to Expect

It looks like your repository dependencies are already up-to-date and no Pull Requests will be necessary right away.

---

 Got questions? Check out Renovate's [Docs](https://docs.renovatebot.com/), particularly the Getting Started section.
If you need any further assistance then you can also [request help here](https://github.com/renovatebot/renovate/discussions).

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

<!--renovate-config-hash:94693a990c975907e7f13da3309b9d56ba02b3983519b41786edf5cf031e457c-->

Reviewed-on: #1
Co-authored-by: Paolo Asperti <paolo@asperti.com>
Co-committed-by: Paolo Asperti <paolo@asperti.com>
2026-03-09 09:03:56 +00:00
.forgejo/workflows forgejo update 2026-01-19 14:42:15 +01:00
rootfs initial import 2024-05-20 21:35:34 +02:00
Dockerfile initial import 2024-05-20 21:35:34 +02:00
LICENSE initial import 2024-05-20 21:35:34 +02:00
README.md initial import 2024-05-20 21:35:34 +02:00
renovate.json Configure Renovate (#1) 2026-03-09 09:03:56 +00:00

docker-smtp-relay

Build Status

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

docker build . -t docker.asperti.com/paspo/smtp-relay

run

With docker compose:

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