deb repo parser added, readme updated

This commit is contained in:
2022-11-22 18:35:59 +03:00
parent 8b465d8e25
commit c178256fc0
11 changed files with 98 additions and 41 deletions

View File

@@ -2,6 +2,10 @@
Right now there's only `rpm` repository mirroring container. `deb` will be added later based on `ubuntu`.
docker build -t rpmmirror:latest .
docker run -v "$(pwd)/mirror_data":/data rpmmirror:latest
docker build -t rpmmirror:latest -f Dockerfile.rpm .
docker run -v "$(pwd)/data/rpm":/data rpmmirror:latest
Here is the `deb` container version:
docker build -t debmirror:latest -f Dockerfile.deb .
docker run -v "$(pwd)/data/deb":/data debmirror:latest