Skip to content

Commit

Permalink
Merge pull request #552 from Malix-Labs/patch-1
Browse files Browse the repository at this point in the history
docs: enhance documentation structure and merge READMEs
  • Loading branch information
navidys authored Mar 1, 2025
2 parents abb902f + 9a57aeb commit 8a850c7
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 67 deletions.
66 changes: 0 additions & 66 deletions README.md

This file was deleted.

File renamed without changes.
File renamed without changes.
63 changes: 62 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,57 @@
# Documents
## podman-tui

![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/containers/podman-tui)
![Go](https://github.com/containers/podman-tui/workflows/Go/badge.svg)
[![Go Report](https://goreportcard.com/badge/github.com/containers/podman-tui)](https://goreportcard.com/report/github.com/containers/podman-tui)
[![codecov](https://codecov.io/gh/navidys/podman-tui/branch/main/graph/badge.svg)](https://codecov.io/gh/navidys/podman-tui)

Terminal user interface for Podman environment.

![Screenshot](./docs/podman-tui.gif)

- [**Overview**](#overview)
- [**Compatibility Matrix**](#compatibility-matrix)
- [**Installation**](#installation)
- [**PreRun Checks**](#prerun-checks)
- [**Key Bindings**](#key-bindings)
- [**Code of Conduct**](#code-of-conduct)
- [**License**](#license)

## Overview

podman-tui is a terminal user interface for podman environment.
It is using [podman go bindings](https://github.com/containers/podman/tree/main/pkg/bindings) to communicate with local or remote podman machine (through SSH).

## Compatibility matrix

| Terminal User Interface | Podman |
| ----------- | ------ |
| release-1.x | v5.x.y |
| release-0.x | v4.x.y |

## Installation

Building from source (Linux, Windows and MacOS) or installing packaged versions are detailed in [install guide](install.md).

## PreRun Checks

* `podman.socket` service needs to be running on podman machine.
The recommended way to start Podman system service in production mode is via systemd socket-activation:

```shell
$ systemctl --user start podman.socket
```

See [start podman system service](https://podman.io/blogs/2020/08/10/podman-go-bindings.html) for more details.

* If the SSH key has a passphrase, then you need to set and export `CONTAINER_PASSPHRASE=<password>` variable.
```shell
$ export CONTAINER_PASSPHRASE=keypass
```

* podman-tui uses 256 colors terminal mode on `Nix` system and standard ANSI colors on `Windows` system (use "command prompt" application).


## Key Bindings

Expand Down Expand Up @@ -27,3 +80,11 @@ podman-tui uses following keyboard keys for different actions:
| Display images screen | F6 |
| Display networks screen | F7 |
| Display secrets screen | F8 |

## Code of Conduct

This project is using the [Containers Community Code of Conduct](https://github.com/containers/common/blob/main/CODE-OF-CONDUCT.md)

## License

Licensed under the [Apache 2.0](LICENSE) license.
File renamed without changes.
File renamed without changes.

0 comments on commit 8a850c7

Please sign in to comment.