1
0
mirror of https://github.com/b4tman/docker-squid.git synced 2025-08-12 21:57:31 +00:00

squid container

This commit is contained in:
2017-02-08 10:07:59 +03:00
parent 6b0305b6e5
commit cc0825b06d
3 changed files with 31 additions and 1 deletions

13
Dockerfile Normal file

@@ -0,0 +1,13 @@
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