{"id":13522332,"url":"https://github.com/containers/podman-tui","last_synced_at":"2026-03-13T09:02:16.976Z","repository":{"id":37488123,"uuid":"450544849","full_name":"containers/podman-tui","owner":"containers","description":"Podman Terminal UI","archived":false,"fork":false,"pushed_at":"2026-03-09T03:18:41.000Z","size":50994,"stargazers_count":1063,"open_issues_count":7,"forks_count":45,"subscribers_count":15,"default_branch":"main","last_synced_at":"2026-03-09T09:03:54.997Z","etag":null,"topics":["containers","podman","terminal-ui"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/containers.png","metadata":{"files":{"readme":"docs/README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"docs/CODE-OF-CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-21T15:34:14.000Z","updated_at":"2026-03-09T03:15:52.000Z","dependencies_parsed_at":"2023-12-20T12:43:56.594Z","dependency_job_id":"490e358d-4d86-463c-bb86-79af915bdf88","html_url":"https://github.com/containers/podman-tui","commit_stats":{"total_commits":413,"total_committers":9,"mean_commits":"45.888888888888886","dds":0.5593220338983051,"last_synced_commit":"ebb73a2f7c47adf9773d57509760117f78ffe215"},"previous_names":[],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/containers/podman-tui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containers%2Fpodman-tui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containers%2Fpodman-tui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containers%2Fpodman-tui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containers%2Fpodman-tui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/containers","download_url":"https://codeload.github.com/containers/podman-tui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/containers%2Fpodman-tui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30463559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T06:34:02.089Z","status":"ssl_error","status_checked_at":"2026-03-13T06:33:49.182Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","podman","terminal-ui"],"created_at":"2024-08-01T06:00:45.745Z","updated_at":"2026-03-13T09:02:16.910Z","avatar_url":"https://github.com/containers.png","language":"Go","funding_links":[],"categories":["Go Tools","Go","Software Packages","软件包","Table of Contents","\u003ca name=\"devops\"\u003e\u003c/a\u003eDevOps"],"sub_categories":["DevOps Tools","DevOps 工具"],"readme":"## podman-tui\n\n![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)\n![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/containers/podman-tui)\n![Go](https://github.com/containers/podman-tui/workflows/Go/badge.svg)\n[![Go Report](https://goreportcard.com/badge/github.com/containers/podman-tui)](https://goreportcard.com/report/github.com/containers/podman-tui)\n[![codecov](https://codecov.io/gh/navidys/podman-tui/branch/main/graph/badge.svg)](https://codecov.io/gh/navidys/podman-tui)\n\nTerminal user interface for Podman environment.\n\n![Screenshot](./podman-tui.gif)\n\n- [**Overview**](#overview)\n- [**Compatibility Matrix**](#compatibility-matrix)\n- [**Installation**](#installation)\n- [**PreRun Checks**](#prerun-checks)\n- [**Key Bindings**](#key-bindings)\n- [**Code of Conduct**](#code-of-conduct)\n- [**License**](#license)\n\n## Overview\n\npodman-tui is a terminal user interface for podman environment.\nIt is using [podman go bindings](https://github.com/containers/podman/tree/main/pkg/bindings) to communicate with local or remote podman machine (through SSH).\n\n## Compatibility matrix\n\n| Terminal User Interface  | Podman |\n| ----------- | ------ |\n| release-1.x | v5.x.y |\n| release-0.x | v4.x.y |\n\n## Installation\n\nBuilding from source (Linux, Windows and MacOS) or installing packaged versions are detailed in [install guide](install.md).\n\n## PreRun Checks\n\n* `podman.socket` service needs to be running on podman machine.\n    The recommended way to start Podman system service in production mode is via systemd socket-activation:\n\n    ```shell\n    $ systemctl --user start podman.socket\n    ```\n\n    For non-systemd distributions, the socket can be created using the below command.\n    Add this command to your distro or window manager’s autostart to start the service automatically.\n\n    ```shell\n    $ podman system service --time=0\n    ```\n\n    Note: This command creates the socket only for the user who runs it.\n\n    See [start podman system service](https://podman.io/blogs/2020/08/10/podman-go-bindings.html) for more details.\n\n* If the SSH key has a passphrase, then you need to set and export `CONTAINER_PASSPHRASE=\u003cpassword\u003e` variable.\n    ```shell\n    $ export CONTAINER_PASSPHRASE=keypass\n    ```\n\n* podman-tui uses 256 colors terminal mode on `Nix` system and standard ANSI colors on `Windows` system (use \"command prompt\" application).\n\n\n## Key Bindings\n\npodman-tui uses following keyboard keys for different actions:\n\n| Action                           | Key        |\n| -------------------------------- | ---------- |\n| Display command menu             | m          |\n| Display sort menu                | s          |\n| Switch to next screen            | l          |\n| Switch to previous screen        | h          |\n| Move up                          | k          |\n| Move down                        | j          |\n| Exit application                 | Ctrl+c     |\n| Close the active dialog          | Esc        |\n| Switch between interface widgets | Tab        |\n| Delete selected item             | Delete     |\n| Move up/down                     | Up/Down    |\n| Previous/Next screen             | Left/Right |\n| Scroll Up                        | Page Up    |\n| Scroll Down                      | Page Down  |\n| Display help screen              | F1         |\n| Display system screen            | F2         |\n| Display pods screen              | F3         |\n| Display containers screen        | F4         |\n| Display volumes screen           | F5         |\n| Display images screen            | F6         |\n| Display networks screen          | F7         |\n| Display secrets screen           | F8         |\n\n## Code of Conduct\n\nThis project is using the [Containers Community Code of Conduct](https://github.com/containers/common/blob/main/CODE-OF-CONDUCT.md)\n\n## License\n\nLicensed under the [Apache 2.0](LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontainers%2Fpodman-tui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcontainers%2Fpodman-tui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcontainers%2Fpodman-tui/lists"}