mirror of
https://github.com/bokysan/docker-postfix.git
synced 2024-11-14 11:37:17 +08:00
5 lines
133 B
Bash
5 lines
133 B
Bash
|
#!/bin/sh
|
||
|
cd $(dirname $0)/../../
|
||
|
docker build . -t boky/postfix && \
|
||
|
docker run -it --rm --name postfix -p 1587:587 $* boky/postfix
|