Skip to content

Commit

Permalink
Add instructions on install from Homebrew
Browse files Browse the repository at this point in the history
Signed-off-by: Daniils Petrovs <[email protected]>
  • Loading branch information
DaniruKun authored and p12tic committed May 4, 2024
1 parent b4cfef1 commit cef1785
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,45 @@ like `hostnet`. If you desire that behavior, pass it the standard way like `netw

## Installation

### Pip

Install the latest stable version from PyPI:

```
```bash
pip3 install podman-compose
```

pass `--user` to install inside regular user home without being root.

Or latest development version from GitHub:

```bash
pip3 install https://github.com/containers/podman-compose/archive/main.tar.gz
```
pip3 install https://github.com/containers/podman-compose/archive/devel.tar.gz

### Homebrew

```bash
brew install podman-compose
```

### Manual

or install from Fedora (starting from f31) repositories:
```bash
curl -o /usr/local/bin/podman-compose https://raw.githubusercontent.com/containers/podman-compose/main/podman_compose.py
chmod +x /usr/local/bin/podman-compose
```

or inside your home

```bash
curl -o ~/.local/bin/podman-compose https://raw.githubusercontent.com/containers/podman-compose/main/podman_compose.py
chmod +x ~/.local/bin/podman-compose
```

or install from Fedora (starting from f31) repositories:

```bash
sudo dnf install podman-compose
```

Expand All @@ -78,10 +99,9 @@ sudo dnf install podman-compose
We have included fully functional sample stacks inside `examples/` directory.
You can get more examples from [awesome-compose](https://github.com/docker/awesome-compose).


A quick example would be

```
```bash
cd examples/busybox
podman-compose --help
podman-compose up --help
Expand Down

0 comments on commit cef1785

Please sign in to comment.