1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2024-09-21 16:58:05 +00:00
docker-squid/Dockerfile

14 lines
249 B
Docker
Raw Normal View History

2017-02-08 07:07:59 +00:00
FROM alpine
MAINTAINER b4tman <b4tm4n@mail.ru>
ENV SQUID_CONFIG_FILE=/etc/squid/squid.conf
RUN apk add --no-cache squid
VOLUME ["/var/cache/squid"]
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["squid"]
EXPOSE 3128/tcp