File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
etc/s6-overlay/s6-rc.d/01-startup
etc/s6-overlay/s6-rc.d/01-startup Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ COPY . .
55
55
RUN git checkout "$SHAIRPORT_SYNC_BRANCH"
56
56
WORKDIR /shairport-sync/build
57
57
RUN autoreconf -i ../
58
- RUN ../configure --sysconfdir=/etc --with-alsa --with-pa --with-soxr --with-avahi --with-ssl=openssl \
58
+ RUN CFLAGS= "-O3" CXXFLAGS= "-O3" ../configure --sysconfdir=/etc --with-alsa --with-pa --with-soxr --with-avahi --with-ssl=openssl \
59
59
--with-airplay-2 --with-metadata --with-dummy --with-pipe --with-dbus-interface \
60
60
--with-stdout --with-mpris-interface --with-mqtt-client \
61
61
--with-apple-alac --with-convolution
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ COPY . .
40
40
RUN git checkout "$SHAIRPORT_SYNC_BRANCH"
41
41
WORKDIR /shairport-sync/build
42
42
RUN autoreconf -i ../
43
- RUN ../configure --sysconfdir=/etc --with-alsa --with-pa --with-soxr --with-avahi --with-ssl=mbedtls \
43
+ RUN CFLAGS= "-O3" CXXFLAGS= "-O3" ../configure --sysconfdir=/etc --with-alsa --with-pa --with-soxr --with-avahi --with-ssl=mbedtls \
44
44
--with-metadata --with-dummy --with-pipe --with-dbus-interface \
45
45
--with-stdout --with-mpris-interface --with-mqtt-client \
46
46
--with-apple-alac --with-convolution
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
echo " STARTING - $( date) "
3
+
4
+ # Set the limit to the same value Docker has been using in earlier version.
5
+ ulimit -n 1048576
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
echo " STARTING - $( date) "
3
+
4
+ # Set the limit to the same value Docker has been using in earlier version.
5
+ ulimit -n 1048576
You can’t perform that action at this time.
0 commit comments