[DOCKER][MAIL] Temporarily disable mail container
This commit is contained in:
parent
1773ab7af2
commit
2e490756b9
15
.gitignore
vendored
15
.gitignore
vendored
@ -29,10 +29,19 @@
|
|||||||
DOCUMENTATION/database/*
|
DOCUMENTATION/database/*
|
||||||
!DOCUMENTATION/database/database.pdf
|
!DOCUMENTATION/database/database.pdf
|
||||||
|
|
||||||
docker/certbot/*
|
docker/certbot/.files
|
||||||
!docker/certbot/docker-compose.fragment.sh
|
docker/certbot/www
|
||||||
docker/*/*.env
|
docker/*/*.env
|
||||||
docker/mail/config/*
|
|
||||||
|
docker/mail/etc/hostname
|
||||||
|
docker/mail/etc/hosts
|
||||||
|
docker/mail/etc/resolv.conf
|
||||||
|
docker/mail/config/aliases.db
|
||||||
|
docker/mail/config/domains.db
|
||||||
|
docker/mail/config/mailboxes.db
|
||||||
|
docker/mail/config/passwd.db
|
||||||
|
docker/mail/etc/service/*
|
||||||
|
!docker/mail/etc/service/*/run
|
||||||
|
|
||||||
docker-compose.yaml
|
docker-compose.yaml
|
||||||
composer.local.json
|
composer.local.json
|
||||||
|
4
bin/configure
vendored
4
bin/configure
vendored
@ -47,7 +47,7 @@ Choose whether you prefer social to handle all the services it needs though dock
|
|||||||
3>&1 1>&2 2>&3)
|
3>&1 1>&2 2>&3)
|
||||||
validate_exit $?
|
validate_exit $?
|
||||||
case ${SERVICES} in
|
case ${SERVICES} in
|
||||||
'docker') DOCKER='"nginx" "certbot" "php" "db" "redis" "mail"' ;;
|
'docker') DOCKER='"nginx" "certbot" "php" "db" "redis"' ;; # TODO enable and configure "mail"
|
||||||
'mixed')
|
'mixed')
|
||||||
DOCKER=$(${WHIPTAIL} --title 'GNU social Docker services' --clear --backtitle 'GNU social' \
|
DOCKER=$(${WHIPTAIL} --title 'GNU social Docker services' --clear --backtitle 'GNU social' \
|
||||||
--checklist "\nPick which of the following services you'd like to add to docker-compose.\n* indicates a service that has extra configuration" 0 0 0 \
|
--checklist "\nPick which of the following services you'd like to add to docker-compose.\n* indicates a service that has extra configuration" 0 0 0 \
|
||||||
@ -226,6 +226,7 @@ validate_exit $?
|
|||||||
|
|
||||||
# ------------ Mail server --------------
|
# ------------ Mail server --------------
|
||||||
MAILER_DSN='sendmail://localhost'
|
MAILER_DSN='sendmail://localhost'
|
||||||
|
if false; then
|
||||||
if echo "${DOCKER}" | grep -Fvq '"mail"'; then
|
if echo "${DOCKER}" | grep -Fvq '"mail"'; then
|
||||||
while true; do
|
while true; do
|
||||||
MAILER_DSN=$(${WHIPTAIL} --title 'GNU social mail server DSN' --clear --backtitle 'GNU social' \
|
MAILER_DSN=$(${WHIPTAIL} --title 'GNU social mail server DSN' --clear --backtitle 'GNU social' \
|
||||||
@ -287,6 +288,7 @@ if echo "${DOCKER}" | grep -Fq '"mail"'; then
|
|||||||
if [ -n "${MAIL_PASSWORD}" ]; then break; fi
|
if [ -n "${MAIL_PASSWORD}" ]; then break; fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user