검색

18.5. 컨테이너에서 Buildah 실행

download PDF

이 절차에서는 컨테이너에서 Buildah를 실행하고 이미지를 기반으로 작동 중인 컨테이너를 생성하는 방법을 보여줍니다.

사전 요구 사항

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

절차

  1. registry.redhat.io 레지스트리에 로그인합니다.

    $ podman login registry.redhat.io
    Username: myuser@mycompany.com
    Password: <password>
    Login Succeeded!
  2. registry.redhat.io/rhel9/buildah 이미지를 가져와서 실행합니다.

    # podman run --rm --device /dev/fuse -it \
      registry.redhat.io/rhel9/buildah /bin/bash
    • --rm 옵션은 컨테이너가 종료된 후 registry.redhat.io/rhel9/buildah 이미지를 제거합니다.
    • device 옵션 은 컨테이너에 호스트 장치를 추가합니다.
    • sys_chroot - 다른 루트 디렉터리로 변경할 수 있습니다. 컨테이너의 기본 기능에는 포함되어 있지 않습니다.
  3. registry.access.redhat.com/ubi9 이미지를 사용하여 새 컨테이너를 생성합니다.

    # buildah from registry.access.redhat.com/ubi9
    ...
    ubi9-working-container
  4. ubi9-working-container 컨테이너 내에서 ls / 명령을 실행합니다.

    # buildah run --isolation=chroot ubi9-working-container ls /
    bin  boot  dev  etc  home  lib  lib64  lost+found  media  mnt  opt  proc  root  run  sbin  srv
  5. 선택 사항: 로컬 스토리지의 모든 이미지를 나열합니다.

    # buildah images
    REPOSITORY                        TAG      IMAGE ID       CREATED       SIZE
    registry.access.redhat.com/ubi9   latest   ecbc6f53bba0   5 weeks ago   211 MB
  6. 선택 사항: 작업 중인 컨테이너 및 해당 기본 이미지를 나열합니다.

    # buildah containers
    CONTAINER ID  BUILDER  IMAGE ID     IMAGE NAME                       CONTAINER NAME
    0aaba7192762     *     ecbc6f53bba0 registry.access.redhat.com/ub... ubi9-working-container
  7. 선택 사항: registry.access.redhat.com/ubi9 이미지를 registry.example.com 에 있는 로컬 레지스트리로 푸시합니다.

    # buildah push ecbc6f53bba0 registry.example.com:5000/ubi9/ubi
Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

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

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

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

Red Hat 소개

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

© 2024 Red Hat, Inc.