Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sshaaf/dockerfiles
a bunch of useful dockerfiles
https://github.com/sshaaf/dockerfiles
Last synced: about 2 months ago
JSON representation
a bunch of useful dockerfiles
- Host: GitHub
- URL: https://github.com/sshaaf/dockerfiles
- Owner: sshaaf
- Created: 2023-05-15T13:38:47.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-02T17:05:30.000Z (over 1 year ago)
- Last Synced: 2023-09-03T21:02:12.228Z (over 1 year ago)
- Language: PLpgSQL
- Homepage: https://shaaf.dev
- Size: 1.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dockerfiles
## Mailcatcher
**NOTE**: Just only for local testing purposes
MailCatcher runs a super simple SMTP server which catches any message sent to it to display in a web interface.
[MailCatcher](https://mailcatcher.me/) runs a super simple SMTP server which catches
any message sent to it to display in a web interface. By running mailcatcher we can get all the emails within our setup for testing and we wont need to use our personal or corporate emails for this. Its a great utility for testing without sending to actual email servers.To run locally you use the following command
```shell
podman run -d --name mailcatcher -p 8080:8080 -p 1025:1025 quay.io/sshaaf/mailcatcher
```This command will expose locally the following ports:
* `http://127.0.0.1:8080` for see the emails
* `smtp://127.0.0.1:1025` for server SMTP endpointTo run in Openshift use the following commands
```shell
oc new-app quay.io/sshaaf/mailcatcher --name=mailcatcheroc expose svc/mailcatcher --port 8080
```