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

entrypoint removed

This commit is contained in:
Dmitry Belyaev 2017-05-11 10:01:17 +03:00
parent 711ae72e14
commit 1df9cc980e

View File

@ -1,15 +0,0 @@
#!/bin/sh
set -e
if [ "$1" = 'squid' ]; then
mkdir -p /var/log/squid
mkdir -p /var/cache/squid
if [ ! "$(ls -A /var/cache/squid)" ]; then
/usr/sbin/squid -f ${SQUID_CONFIG_FILE} -z
fi
exec /usr/sbin/squid -f ${SQUID_CONFIG_FILE} -NYCd 1
else
exec "$@"
fi