DEV Community

Cover image for Instalando Podman no Ubuntu 22.04 LTS
Kleber Bonassi
Kleber Bonassi

Posted on

3

Instalando Podman no Ubuntu 22.04 LTS

Neste artigo veremos como instalar o gerenciador de containers Podman no Ubuntu Linux 22.04 LTS.

O Podman está presente nos repositórios do Ubuntu, portanto a instalação é muito simples:

sudo apt install podman podman-docker
Enter fullscreen mode Exit fullscreen mode

Também é interessante instalar o podman-compose. Para isso é necessário termos instalado o Python e o PIP que é o gerenciador de dependências do Python. Então caso você não tenha instalado o Python e o PIP, execute:

sudo apt install python3.11 python3-pip
Enter fullscreen mode Exit fullscreen mode

Com o Python e o PIP instalados, podemos verificar a necessidade de atualizar o PIP com o comando abaixo:

python3 -m pip install --upgrade pip
Enter fullscreen mode Exit fullscreen mode

Caso já tenha o PIP instalado e este precise ser atualizado, o comando acima vai fazer esta atualização.

E agora podemos instalar o podman-compose, com o comando abaixo:

sudo pip3 install podman-compose
Enter fullscreen mode Exit fullscreen mode

Agora com estas ferramentas instaladas, o uso do podman é basicamente através dos mesmos comandos do Docker, substituindo o comando docker por podman.

Isso é tudo pessoal. Valeu! :)

Image of AssemblyAI tool

Challenge Submission: SpeechCraft - AI-Powered Speech Analysis for Better Communication

SpeechCraft is an advanced real-time speech analytics platform that transforms spoken words into actionable insights. Using cutting-edge AI technology from AssemblyAI, it provides instant transcription while analyzing multiple dimensions of speech performance.

Read full post

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Immerse yourself in a wealth of knowledge with this piece, supported by the inclusive DEV Community—every developer, no matter where they are in their journey, is invited to contribute to our collective wisdom.

A simple “thank you” goes a long way—express your gratitude below in the comments!

Gathering insights enriches our journey on DEV and fortifies our community ties. Did you find this article valuable? Taking a moment to thank the author can have a significant impact.

Okay