1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2024-11-23 02:27:05 +00:00
mailinabox/containers/docker/start_services.sh
2014-04-25 13:04:32 -04:00

13 lines
271 B
Bash

#!/bin/bash
echo "Starting Mail-in-a-Box services..."
service nsd start
service postfix start
dovecot # it's integration with Upstart doesn't work in docker
service opendkim start
service nginx start
service php-fastcgi start
echo "Your Mail-in-a-Box is running."
bash