This repository was archived by the owner on Dec 13, 2018. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,16 +8,13 @@ RUN echo 'deb http://ppa.launchpad.net/vbernat/haproxy-1.5/ubuntu trusty main' >
88 apt-get update && \
99 apt-get install -y --no-install-recommends haproxy python-pip && \
1010 apt-get clean && \
11- rm -rf /var/lib/apt/lists/* && \
12- echo '#!/bin/sh' > /reload.sh && \
13- echo 'kill -USR1 $(cat /tmp/dockercloud-haproxy.pid)' >> /reload.sh && \
14- chmod +x /reload.sh
11+ rm -rf /var/lib/apt/lists/*
1512
13+ COPY reload.sh /reload.sh
1614COPY . haproxy-src/
1715RUN cd /haproxy-src/ && \
1816 pip install .
1917
20-
2118ENV RSYSLOG_DESTINATION=127.0.0.1 \
2219 MODE=http \
2320 BALANCE=roundrobin \
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ kill -USR1 $( cat /tmp/dockercloud-haproxy.pid)
You can’t perform that action at this time.
0 commit comments