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.
- Host: GitHub
- URL: https://github.com/danielpops/apt-repo
- Owner: danielpops
- License: mit
- Created: 2017-02-03T03:44:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T09:22:50.000Z (over 9 years ago)
- Last Synced: 2025-01-29T20:52:26.584Z (over 1 year ago)
- Topics: apt, docker, nginx, reprepro
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!