31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# This script is used within containers to turn it into a Mail-in-a-Box.
|
||
|
# It is referenced by the Dockerfile. You should not run it directly.
|
||
|
########################################################################
|
||
|
|
||
|
# Local configuration details were not known at the time the Docker
|
||
|
# image was created, so all setup is defered until the container
|
||
|
# is started. That's when this script runs.
|
||
|
|
||
|
# If we're not in an interactive shell, set defaults.
|
||
|
if [ ! -t 0 ]; then
|
||
|
export PUBLIC_IP=auto
|
||
|
export PUBLIC_IPV6=auto
|
||
|
export PRIMARY_HOSTNAME=auto
|
||
|
export CSR_COUNTRY=US
|
||
|
export NONINTERACTIVE=1
|
||
|
fi
|
||
|
|
||
|
# Start configuration.
|
||
|
cd /usr/local/mailinabox
|
||
|
export IS_DOCKER=1
|
||
|
export DISABLE_FIREWALL=1
|
||
|
source setup/start.sh # using 'source' means an exit from inside also exits this script and terminates container
|
||
|
|
||
|
# Once the configuration is complete, start the Unix init process
|
||
|
# provided by the base image. We're running as process 0, and
|
||
|
# /sbin/my_init needs to run as process 0, so use 'exec' to replace
|
||
|
# this shell process and not fork a new one. Nifty right?
|
||
|
exec /sbin/my_init -- bash
|