An open API service indexing awesome lists of open source software.

https://github.com/danielpops/apt-repo

A docker file that exemplifies how to set up a local apt server for verifying that packages can be installed correctly through apt-get install commands.
https://github.com/danielpops/apt-repo

apt docker nginx reprepro

Last synced: about 1 month ago
JSON representation

A docker file that exemplifies how to set up a local apt server for verifying that packages can be installed correctly through apt-get install commands.

Awesome Lists containing this project

README

          

# apt-repo
A docker file that exemplifies how to set up a local apt server for verifying that packages can be installed correctly through apt-get install commands.

Instructions:

docker build --tag apt-repo .
docker run --rm -it --entrypoint /bin/bash -p 80 apt-repo
# You'll be dropped in to /var/repositories/ubuntu
reprepro includedeb trusty

service nginx restart

That's it!