docker-debian-repository
docker-debian-repository copied to clipboard
A local repository for publishing deb files for use with apt.
Adding follow repo to /etc/apt/sources.list `deb http://localhost:49161/debian unstable main contrib non-free ` leads to `apt update` error ``` E: The repository 'http://localhost:49161/debian unstable Release' does not have a Release file....
Reading the reprepro manpage, the default database is `+b/db` which is relative to basedir, which is `/var/lib/reprepro`. However the Dockerfile specifies VOLUMEs as `/docker/keys` and `/docker/incoming` so it looks like...
`reprepro-import.sh` implies it. I need to be able to maintain multiple local distributions, in my case for ubuntu hardy, lucid and trusty. I'll need to add them into `configs/reprepro-distributions` but...