17 lines
226 B
Docker
17 lines
226 B
Docker
FROM debian
|
|
|
|
MAINTAINER Joachim Lusiardi
|
|
|
|
RUN apt-get update; \
|
|
apt-get install -y haproxy;
|
|
|
|
ADD haproxy.conf /haproxy.conf
|
|
|
|
ADD start.sh /start.sh
|
|
RUN chmod +x /start.sh
|
|
|
|
VOLUME ["/data"]
|
|
|
|
EXPOSE 443
|
|
ENTRYPOINT /start.sh
|