{"id":16195140,"url":"https://github.com/ashcrow/dnf-plugin-container","last_synced_at":"2025-08-23T14:15:16.294Z","repository":{"id":69246801,"uuid":"107325682","full_name":"ashcrow/dnf-plugin-container","owner":"ashcrow","description":"Update containers like you update packages.","archived":false,"fork":false,"pushed_at":"2017-10-18T13:33:53.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T15:55:13.623Z","etag":null,"topics":["containers","dnf","dnf-plugin","plugin","system-containers","tool","update"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ashcrow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-17T21:25:13.000Z","updated_at":"2017-10-18T14:05:36.000Z","dependencies_parsed_at":"2023-03-17T02:46:05.758Z","dependency_job_id":null,"html_url":"https://github.com/ashcrow/dnf-plugin-container","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ashcrow/dnf-plugin-container","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashcrow%2Fdnf-plugin-container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashcrow%2Fdnf-plugin-container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashcrow%2Fdnf-plugin-container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashcrow%2Fdnf-plugin-container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ashcrow","download_url":"https://codeload.github.com/ashcrow/dnf-plugin-container/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashcrow%2Fdnf-plugin-container/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271751926,"owners_count":24814707,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["containers","dnf","dnf-plugin","plugin","system-containers","tool","update"],"created_at":"2024-10-10T08:26:23.076Z","updated_at":"2025-08-23T14:15:16.271Z","avatar_url":"https://github.com/ashcrow.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dnf-plugin-container\nUpdate containers like you update packages.\n\n**THIS IS A WORK IN PROGRESS**\nIn other words, this is a starting point for further work.\n\n\n## WIP Assumptions\n\n- It may not work and possibly do weird things :-P\n- Only tested with system containers so far\n- The atomic commands libraries are available in the same site-packages that dnf uses\n- Updates always update all containers to the latest version for the installed tag\n\n\n## Usage\n\n**WARNING** This may break stuff!!\n\n1. Create a path for plugins\n2. Add ``pluginpath=$YOUR_NEW_PATH``\n3. Place ``container.py``in $YOUR_NEW_PATH\n4. Use ``dnf container``\n\n### Example\n```\n$ sudo atomic containers list --no-trunc\n   CONTAINER ID IMAGE  COMMAND         CREATED          STATE      BACKEND    RUNTIME\n   aaaaz test:0.4.rc2 /usr/bin/run.sh 2017-10-18 09:17 failed     ostree     runc\n$ sudo atomic images list\n   REPOSITORY   TAG       IMAGE ID       CREATED            VIRTUAL SIZE   TYPE\n   test   0.4.rc2   2848e6699c97   2017-10-17 17:34                  ostree\n$ sudo dnf container check\nChecking 1 local container(s) for updates\nThe following containers need updating:\n        aaaaz\n\nTo update your containers use dnf containers update or, to update specific containers, the atomic command\nExample: sudo atomic containers update aaaaz\n$ sudo dnf container update -y\nChecking 1 local container(s) for updates\nThe following containers need updating:\n        aaaaz\n\nTo update your containers use dnf containers update or, to update specific containers, the atomic command\nExample: sudo atomic containers update aaaaz\nPulling test:0.4.rc2 ...\nUpdating aaaaz ...\nExtracting to /var/lib/containers/atomic/aaaaz.1\nsystemd-tmpfiles --remove /etc/tmpfiles.d/aaaaz.conf\nsystemctl daemon-reload\nsystemd-tmpfiles --create /etc/tmpfiles.d/aaaaz.conf\n$ sudo atomic images list\n   REPOSITORY   TAG       IMAGE ID       CREATED            VIRTUAL SIZE   TYPE\n   test   0.4.rc2   aa3d7accac3b   2017-10-18 09:18                  ostree\n$ sudo dnf container check\nChecking 1 local container(s) for updates\nNo updates found\n```\n\n### Commands\n\n#### check\nReports on containers which have updates available.\n\n```\n$ sudo dnf container check\nChecking 1 local container(s) for updates\nThe following containers need updating:\n        aaaaz\n\nTo update your containers use dnf containers update or, to update specific containers, the atomic command\nExample: sudo atomic containers update aaaaz\n```\n\n#### update\nUpdates all system containers to the latest image for the installed tag.\n\n\n```\n$ sudo dnf container update -y\nChecking 1 local container(s) for updates\nThe following containers need updating:\n        aaaaz\n\nTo update your containers use dnf containers update or, to update specific containers, the atomic command\nExample: sudo atomic containers update aaaaz\nPulling \u003ctest image\u003e ...\nUpdating aaaaz ...\nExtracting to /var/lib/containers/atomic/aaaaz.1\nsystemd-tmpfiles --remove /etc/tmpfiles.d/aaaaz.conf\nsystemctl daemon-reload\nsystemd-tmpfiles --create /etc/tmpfiles.d/aaaaz.conf\n$\n$ sudo dnf container check\nChecking 1 local container(s) for updates\nNo updates found\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashcrow%2Fdnf-plugin-container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashcrow%2Fdnf-plugin-container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashcrow%2Fdnf-plugin-container/lists"}