Podman 윈도 버전 설치 및 초기화

2024. 10. 14. 15:34리눅스 실제 사용 팁/Docker

1. Podman GitHub 사이트에서 윈도용 exe 파일을 다운로드해서 설치한다.

 

https://github.com/containers/podman/blob/main/docs/tutorials/podman-for-windows.md

 

podman/docs/tutorials/podman-for-windows.md at main · containers/podman

Podman: A tool for managing OCI containers and pods. - containers/podman

github.com

 

2. 초기화

podman machine init
---
실행 결과 :
Downloading VM image: v20241013061159-5.2-rootfs-amd64.tar.zst: done
Extracting compressed file: podman-machine-default-amd64: done
Importing operating system into WSL (this may take a few minutes on a new WSL install)...
가져오기가 진행 중입니다. 이 작업은 몇 분 정도 걸릴 수 있습니다.
작업을 완료했습니다.
Configuring system...
Machine init complete
To start your machine run:

        podman machine start

 

podman machine start
---
실행 결과 :
Starting machine "podman-machine-default"

This machine is currently configured in rootless mode. If your containers
require root permissions (e.g. ports < 1024), or if you run into compatibility
issues with non-podman clients, you can switch using the following command:

        podman machine set --rootful

API forwarding listening on: npipe:////./pipe/docker_engine

Docker API clients default to this address. You do not need to set DOCKER_HOST.
Machine "podman-machine-default" started successfully

'리눅스 실제 사용 팁 > Docker' 카테고리의 다른 글

Podman - 도커 호환 컨테이너 엔진  (0) 2024.10.14
Docker - Maria DB 실행 및 설정  (0) 2023.12.02
Docker : Oracle Database  (0) 2023.08.08
Dockerfile  (0) 2023.08.01
Docker Compose (번역)  (0) 2023.05.06