mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
issues/2023: postfix is not able to install due to incorrect hostname in container
This commit is contained in:
parent
d101d0aa0a
commit
f14945c52d
|
@ -41,7 +41,12 @@ RUN \
|
|||
apt-get -qq update && \
|
||||
apt-get -qq install apt-utils 2>/dev/null && \
|
||||
apt-get -qq dist-upgrade && \
|
||||
echo "applying workaround for ubuntu/postfix bug described in https://github.com/docker-mailserver/docker-mailserver/issues/2023#issuecomment-855326403" && \
|
||||
mv /bin/hostname{,.bak} && \
|
||||
echo "echo docker-mailserver.invalid" > /bin/hostname && \
|
||||
chmod +x /bin/hostname && \
|
||||
apt-get -qq install postfix && \
|
||||
mv /bin/hostname{.bak,} && \
|
||||
apt-get -qq --no-install-recommends install \
|
||||
# A - D
|
||||
altermime amavisd-new apt-transport-https arj binutils bzip2 bsd-mailx \
|
||||
|
|
Loading…
Reference in a new issue