How to Install and Uninstall docker-compose.noarch Package on Fedora 36

Last updated: May 17,2024

1. Install "docker-compose.noarch" package

Please follow the guidance below to install docker-compose.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install docker-compose.noarch

2. Uninstall "docker-compose.noarch" package

This tutorial shows how to uninstall docker-compose.noarch on Fedora 36:

$ sudo dnf remove docker-compose.noarch $ sudo dnf autoremove

3. Information about the docker-compose.noarch package on Fedora 36

Last metadata expiration check: 3:41:04 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : docker-compose
Version : 1.29.2
Release : 4.fc36
Architecture : noarch
Size : 244 k
Source : docker-compose-1.29.2-4.fc36.src.rpm
Repository : fedora
Summary : Multi-container orchestration for Docker
URL : https://github.com/docker/compose
License : ASL 2.0
Description : Compose is a tool for defining and running multi-container Docker
: applications. With Compose, you use a Compose file to configure your
: application's services. Then, using a single command, you create and
: start all the services from your configuration.
:
: Compose is great for development, testing, and staging environments,
: as well as CI workflows.
:
: Using Compose is basically a three-step process.
:
: 1. Define your app's environment with a Dockerfile so it can be
: reproduced anywhere.
: 2. Define the services that make up your app in docker-compose.yml so
: they can be run together in an isolated environment:
: 3. Lastly, run docker-compose up and Compose will start and run your
: entire app.