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

Last updated: October 09,2024

1. Install "docker-compose.noarch" package

This guide let you learn how to install docker-compose.noarch on Fedora 38

$ 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 38:

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

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

Last metadata expiration check: 2:45:03 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : docker-compose
Version : 1.29.2
Release : 7.fc38
Architecture : noarch
Size : 338 k
Source : docker-compose-1.29.2-7.fc38.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.