mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-12-17 02:40:54 +00:00
Docker support was initially worked on in 2bbb7a5e7e, but it never really worked.
This extends f7d7434012800c3572049af82a501743d4aed583 which was an old branch for docker work.
31 lines
1.1 KiB
Bash
Executable File
31 lines
1.1 KiB
Bash
Executable File
#!/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
|