diff options
author | Vincent Ambo <tazjin@google.com> | 2019-06-29T13·01+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-06-29T13·01+0100 |
commit | 47f2145b5b39b63500fe2d9d0a64edc44edaa793 (patch) | |
tree | f79bdce9a8683851e648576b47147463d04193c2 /services/tazblog/varnish/Dockerfile | |
parent | 85dbb4cc238c1e4b1b49806c0728c891a9a0acf7 (diff) |
chore(tazblog): Remove files from ye olde times
Diffstat (limited to 'services/tazblog/varnish/Dockerfile')
-rw-r--r-- | services/tazblog/varnish/Dockerfile | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/services/tazblog/varnish/Dockerfile b/services/tazblog/varnish/Dockerfile deleted file mode 100644 index 83733b527d31..000000000000 --- a/services/tazblog/varnish/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM centos:7 -MAINTAINER Vincent Ambo <hej@tazj.in> - -EXPOSE 6081 6082 6083 - -RUN yum install -y epel-release && \ - rpm --nosignature -i https://repo.varnish-cache.org/redhat/varnish-4.1.el7.rpm && \ - yum install -y varnish - -ADD default.vcl /etc/varnish/default.vcl - -CMD ulimit -n 131072 && \ - /usr/sbin/varnishd -F -f /etc/varnish/default.vcl \ - -a :6081 -T :6082 -a :6083,PROXY -t 120 \ - -p thread_pool_min=5 -p thread_pool_max=500\ - -p thread_pool_timeout=300 |