first release

This commit is contained in:
2019-08-05 18:40:59 +02:00
parent 493bee6263
commit 3fed5bb83a
18 changed files with 1500 additions and 0 deletions

16
Dockerfile-debian Normal file
View File

@@ -0,0 +1,16 @@
FROM debian:10
RUN apt-get update && \
apt-get install -y squid && \
mkdir -p /etc/squid/patterns.d /etc/squid/storeid /app/storeid
COPY docker-stuff/start.sh /app/
COPY storeid_rewrite /app/
COPY docker-stuff/squid.conf /etc/squid/
COPY patterns/* /etc/squid/patterns.d/
COPY storeid/* /app/storeid/
EXPOSE 3128
EXPOSE 3129
ENTRYPOINT ["/app/start.sh"]