2c3599721e
Now user is created on setup and dockerfile
6 lines
108 B
Bash
6 lines
108 B
Bash
#!/bin/sh
|
|
PID=$(pgrep master)
|
|
if [ -z ${PID} ]
|
|
then
|
|
exec /usr/sbin/postfix start -c /etc/mail/postfix
|
|
fi |