apt cacher for debian
Go to file
Giles Bradshaw 8048bca859 chore(deps): add renovate.json 2020-08-27 14:39:17 +00:00
.drone ci: moved scripts 2020-08-20 00:28:42 +01:00
docker-dind . 2020-08-06 18:10:19 +01:00
git-hooks ci: better hook 2020-08-12 13:26:14 +01:00
.gitignore ci: moved scripts 2020-08-20 00:28:42 +01:00
.versionrc ci: compare message format 2020-08-05 14:17:52 +01:00
CHANGELOG.md chore(release): 0.0.7 2020-08-12 14:10:03 +01:00
LICENSE Initial commit 2020-07-30 13:30:40 +00:00
README.md ci: better specifcation of versions 2020-08-13 11:48:56 +01:00
docker-compose.yml fix: sigyl/squid-4 v 1.1.0 2020-08-12 11:53:17 +01:00
openssl.cnf . 2020-08-07 13:52:04 +01:00
package.json chore(release): 0.0.7 2020-08-12 14:10:03 +01:00
renovate.json chore(deps): add renovate.json 2020-08-27 14:39:17 +00:00
squid.conf Merge branch 'home-deploy' of https://sigyl.com/git/stack/squid into home-deploy 2020-08-03 21:25:05 +01:00
yarn.lock ci: yarn.lock 2020-08-12 11:54:27 +01:00

README.md

squid

apt cacher for debian

inspired by https://github.com/salrashid123/squid_proxy

making a CA

openssl genrsa -out CA_key.pem 2048
openssl req -x509 -days 600 -new -nodes -key CA_key.pem -out CA_crt.pem -extensions v3_ca -config openssl.cnf    -subj "/C=UK/ST=Devon/L=Rose Ash/O=Google/OU=SiGyl/CN=Proxy-ca"

then set secrets ca-crt and ca-key to the created files

making dockerconfigjson

the secret dockerconfigjson allows images to be pulled from the local docker repository

if you login to this repository with:

docker login $LOCAL_DOCKER_REGISTRY --username client --password $REGISTRY_PASSWORD

then you will find the required content with:

cat ~/.docker/config.json

releasing

see here