검색

7.2. UBI 마이크로 이미지 사용

download PDF

Buildah 툴을 사용하여 ubi-micro 컨테이너 이미지를 빌드할 수 있습니다.

사전 요구 사항

  • container-tools meta-package가 설치되어 있습니다.

사전 요구 사항

  • containers-tool meta-package에서 제공하는 podman 툴이 설치됩니다.

절차

  1. registry.access.redhat.com/ubi8/ubi-micro 이미지를 가져와서 빌드합니다.

    # microcontainer=$(buildah from registry.access.redhat.com/ubi9/ubi-micro)
  2. 작업 컨테이너 루트 파일 시스템을 마운트합니다.

    # micromount=$(buildah mount $microcontainer)
  3. httpd 서비스를 마이크로 마운트 디렉터리에 설치합니다.

    # dnf install \
        --installroot $micromount \
        --releasever=/ \
        --setopt install_weak_deps=false \
        --setopt=reposdir=/etc/yum.repos.d/ \
        --nodocs -y \
        httpd
    # dnf clean all \
        --installroot $micromount
  4. 작업 컨테이너에서 루트 파일 시스템을 마운트 해제합니다.

    # buildah umount $microcontainer
  5. 작동 중인 컨테이너에서 ubi-micro-httpd 이미지를 만듭니다.

    # buildah commit $microcontainer ubi-micro-httpd

검증

  1. ubi-micro-httpd 이미지에 대한 세부 정보를 표시합니다.

    # podman images ubi-micro-httpd
    localhost/ubi-micro-httpd latest 7c557e7fbe9f  22 minutes ago  151 MB
Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.