반응형
Docker 대신 image를 만들 수 있는 도구
기본적으로 Docker 명령어와 동일한 듯 하다.
1. install
sudo apt install buildah
2. build
buildah build -f Dockerfile -t fedora-httpd .
# or
buildah build -t fedora-httpd
3. push
buildah push registry.example.com/my_image
https://github.com/containers/buildah/blob/main/docs/tutorials/01-intro.md
https://github.com/containers/buildah/blob/main/docs/buildah-push.1.md
반응형
'Develop > 기타 작업' 카테고리의 다른 글
buildah multiarch build 및 docker hub push (0) | 2024.07.03 |
---|---|
exec container process `/bin/sh`: Exec format error (0) | 2024.04.28 |
Docker architecture, save, load, tag 및 ctr tag, export, import, push (0) | 2024.04.10 |
sed 수정, 특정 글 위/아래 추가, 특정 글 아래 수정, 띄어쓰기 입력 (0) | 2024.04.08 |
Apache Authentication and Authorization (0) | 2023.11.07 |