[docker centos] mac에서 centos 도커로 띄우기

rul9office·2021년 6월 19일
0

2021.03.12 tistory에서 작성한 글로부터 옮김

리눅스를 공부하면서 실습을 하기 위해 docker에 centos 를 설치했다.

1. docker client 설치

[https://www.docker.com/get-started]

2. centos image pull

docker pull centos:latest 

3. 이미지 목록보기

docker images

4. 컨테이너 실행

docker run -i -t docker.io/centos /bin/bash

5. 컨테이너 종료

exit 입력 또는 ctrl + D

6. 가동중이거나 멈춘 컨테이너 목록을 모두 보고 싶을 때

docker ps -a 

docker 에 git 을 설치해보자

yum install git 

해당 작업 내역을 저장하고 싶은 경우 commit 을 할 수 있다.

docker commit 복사한아이디 centos-git 
docker images

저장한 것을 실행하고자 할 때는 아래와 같이 하면 된다.

docker run -i -t centos-git 
profile
Brings a positive attitude, loves challenges, and enjoys sharing knowledge with others.

0개의 댓글