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