Sign inSign up

yegor256/yum-utils

By yegor256

Updated over 6 years ago

Developers tools to test Yum and Rpm

Image
0

2.4K

yegor256/yum-utils repository overview

Build Status Docker Cloud Automated build License

Developers tools to test yum and rpm.

For example, you want to create an RPM repository. You create a directory (say, /home/yegor/repo) and place all your .rpm files there. Then, you execute createrepo to create meta files:

$ docker run --rm -v /home/yegor/repo:/repo yegor256/yum-utils createrepo /repo

Then, you may want to list all artifacts in the repo at /home/yegor/repo:

$ docker run --rm -v /home/yegor/repo:/repo yegor256/yum-utils \
  /bin/bash -c "yum-config-manager --add-repo file:///repo; \
  yum --disablerepo='*' --enablerepo='repo' list available"

Should work.

Tag summary

Content type

Image

Digest

Size

112.5 MB

Last updated

over 6 years ago

docker pull yegor256/yum-utils