mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
* docs(website): moved the compose blog to the tutorial section Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): added correct image locations Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): corrected the yaml config details Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): added latest screenshots Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): minor edits Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): corrected across-reference Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): corrected afile name Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): added a tutorial cross-reference in the compose section Signed-off-by: Shipra Singh <shipsing@redhat.com> * docs(website): corrected formatting Signed-off-by: Shipra Singh <shipsing@redhat.com> --------- Signed-off-by: Shipra Singh <shipsing@redhat.com>
40 lines
1.1 KiB
Markdown
40 lines
1.1 KiB
Markdown
---
|
|
title: Setting up Compose
|
|
description: Podman Desktop can install the Compose engine.
|
|
sidebar_position: 2
|
|
keywords: [compose]
|
|
tags: [compose]
|
|
---
|
|
|
|
# Setting up Compose
|
|
|
|
Podman Desktop can install the Compose engine.
|
|
|
|
#### Procedure
|
|
|
|
1. Go to **<Icon icon="fa-solid fa-cog" size="lg" /> Settings > Resources**.
|
|
1. In the **Compose** tile, click **Setup**, and follow the prompts.
|
|
|
|
#### Verification
|
|
|
|
1. The Compose reference implementation is in your `PATH`, therefore, you can display the Compose engine version in a terminal:
|
|
|
|
```shell-session
|
|
$ docker-compose version
|
|
```
|
|
|
|
1. Podman detects the same Compose version:
|
|
|
|
```shell-session
|
|
$ podman compose version
|
|
```
|
|
|
|
#### Next steps
|
|
|
|
- [Run Compose](/docs/compose/running-compose).
|
|
|
|
#### Additional resources
|
|
|
|
- (Alternatively) Use an alternative Compose implementation in Python with Podman integration: [install Podman Compose](https://github.com/containers/podman-compose#installation).
|
|
- (Alternatively) [Download and install Compose yourself](https://github.com/docker/compose/releases).
|
|
- [Tutorial: Getting started with Compose](/tutorial/getting-started-with-compose).
|