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

Last updated: October 06,2024

1. Install "docker-compose.noarch" package

Please follow the step by step instructions below to install docker-compose.noarch on Fedora 34

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

2. Uninstall "docker-compose.noarch" package

Here is a brief guide to show you how to uninstall docker-compose.noarch on Fedora 34:

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

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

Last metadata expiration check: 2:56:50 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : docker-compose
Version : 1.28.6
Release : 1.fc34
Architecture : noarch
Size : 241 k
Source : docker-compose-1.28.6-1.fc34.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.