mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
- Dockerfile now builds Inbucket inside the container - Add starter inbucket.conf for Docker - Add install.sh to build inbucket inside container - Add customized greeting.html for Docker
10 lines
190 B
Bash
Executable File
10 lines
190 B
Bash
Executable File
#!/bin/sh
|
|
# docker-run.sh
|
|
# description: Launch Inbucket's docker image
|
|
|
|
if [ "$UID" -ne 0 ]; then
|
|
sudo $0 "$@"
|
|
fi
|
|
|
|
docker run -p 9000:10080 -p 2500:10025 -p 1100:10110 jhillyerd/inbucket
|