Skip to content

Commit a2911e8

Browse files
committed
Disable ipv6 by default
Since Docker doesn't install ipv6 iptables rules by default, we probably shouldn't build with it on. Fixes #15.
1 parent dfd7a47 commit a2911e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN apt-get update \
1313
&& wget "http://znc.in/releases/archive/znc-${ZNC_VERSION}.tar.gz" \
1414
&& tar -zxf "znc-${ZNC_VERSION}.tar.gz" \
1515
&& cd "znc-${ZNC_VERSION}" \
16-
&& ./configure \
16+
&& ./configure --disable-ipv6 \
1717
&& make \
1818
&& make install \
1919
&& apt-get remove -y wget \

0 commit comments

Comments
 (0)