├── .circleci └── config.yml ├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md └── nginx.conf /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vektorcloud/apk-cache/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | README.md 2 | LICENSE 3 | .git/ 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vektorcloud/apk-cache/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vektorcloud/apk-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vektorcloud/apk-cache/HEAD/README.md -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vektorcloud/apk-cache/HEAD/nginx.conf --------------------------------------------------------------------------------