Deleted: .dockerignore .travis.yml

.dockerignore
.travis.yml
This commit is contained in:
Jason 2022-02-17 16:19:22 -05:00
parent 29e6718176
commit 9097d2b379
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F
2 changed files with 0 additions and 36 deletions

View File

@ -1,7 +0,0 @@
.git
circle.yml
LICENSE
VERSION
README.md
Changelog.md
Makefile

View File

@ -1,29 +0,0 @@
sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.5.2
before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
script:
- docker-compose build
- docker-compose up -d
# everything running?
- docker-compose ps
- docker-compose ps squidguard | grep Up
# wpad should be available
- docker-compose run squidguard wget -o /dev/null http://squidguard/wpat.dat
# muenchhausen.de should not be blocked
- docker-compose run squidguard wget -e use_proxy=yes -e http_proxy=http://squidguard:3128 -o /dev/null http://www.muenchhausen.de
# lemonlime.de should be blocked because it is not in the whitelist
- docker-compose run squidguard wget -e use_proxy=yes -e http_proxy=http://squidguard:3128 --content-on-error -qO- http://www.lemonlime.de | grep "block"
notifications:
email:
- derk@muenchhausen.de