일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- docker
- Kubernetes
- Elasticsearch
- CentOS
- centos 7.5
- C
- GNOME
- JSON
- Linux
- Audit Log
- yum
- rsyslog
- RHEL
- K8S
- GPU
- log
- audit
- Shell
- 빅데이터
- 크롬
- syslog
- PostgreSQL
- 서울시민카드
- 디렉토리
- Elk
- Python
- bash
- Chrome
- zabbix
- 파이썬
- Today
- Total
Sysops Notepad
[Linux] Buildah, Podman, Skopeo 설치 및 참고 본문
Podman 포드맨
https://podman.io/
https://github.com/projectatomic/libpod
Buildah 빌다
https://github.com/projectatomic/buildah
Skopeo 스코피오
https://github.com/projectatomic/skopeo
Installing podman
# subscription-manager repos --disable=’*’
# subscription-manager repos --enable=rhel-7-server-rpms
# subscription-manager repos --enable=rhel-7-server-extras-rpms
# subscription-manager repos --enable=rhel-7-server-optional-rpms
# yum -y install buildah skopeo podman
# podman -h
# podman images
Run a container image
# podman run -it registry.access.redhat.com/rhel7/rhel /bin/bash
# podman ps -a
# podman pull registry.access.redhat.com/rhel7/rhel
Remove a container or image
# podman rm 440becd26893
Remove a container image by its image ID or name
# podman rmi registry.access.redhat.com/rhel7/rhel-minimal
# podman rmi de9c26f23799
# podman rmi -f registry.access.redhat.com/rhel7/rhel:latest
Build a container
# cat Dockerfile
FROM registry.access.redhat.com/rhel7/rhel-minimal
ENTRYPOINT "echo "Podman build this container."
# podman build -t podbuilt .
STEP 1: FROM registry.access...
...
Writing manifest to image destination
Storing signatures
91e043c11617c08d4f8...
# podman run podbuilt
Podman build this container.
참고:
https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux_atomic_host/7/html/managing_containers/finding_running_and_building_containers_without_docker
http://saharsh.org/2019/01/18/buildah_podman_skopeo/
'업무 > etc' 카테고리의 다른 글
[Linux] 메모리 정보 확인 Free 명령어 및 설명 (4) | 2019.05.15 |
---|---|
[Linux] ulimit 설명 및 설정방법 (0) | 2019.05.15 |
[Linux] RHEL 8 , Centos 8 주요 기능 정리 (0) | 2019.05.14 |
[Linux] GraphDB(neo4j) 설치하기 (0) | 2019.04.19 |
[Linux] 특정 계정에 명령어 실행 권한 부여 방법 (0) | 2019.04.03 |