yoncho`s blog

3. Docker Create 본문

기술, 나의 공부를 공유합니다./Docker

3. Docker Create

욘초 2023. 6. 22. 23:33

Create 명령어는 Pull받은 Image로 Container를 생성하는 동작을 수행한다.

 

1. Create 명령어 Option (참조 : https://docs.docker.com/engine/reference/commandline/create/ )

- Usage

$ docker create [OPTIONS] IMAGE [COMMAND] [ARG...]

- 일부 Option

  1. --name : assign a name to the container
  2. --network : connect a container to a network
  3. --oom-kill-disable : disable oom killer
  4. --publish, -p : publish a container`s port(s) to the host
  5. --volume, -v : bind mount a volume
  6. --workdir, -w : working directory inside the container

 

2. 예제) 현재 Pull 받은 Image 중 httpd로 “test_httpd”이름을 가진 Container를 생성해보자

1. 현재 Pull 받은 Image 목록 확인 (명령어 : “$ docker images”)

2. httpd로 이름이 “test_httpd”인 컨테이너 생성 (명령어 : “$ docker create --name test_httpd httpd”)

3. 정상적으로 생성되었는지 Container 목록 확인 (명령어 : “$ docker ps -a”)

'기술, 나의 공부를 공유합니다. > Docker' 카테고리의 다른 글

6. Docker Run (Create + Start)  (0) 2023.06.22
5. Docker Stop  (0) 2023.06.22
4. Docker Start  (0) 2023.06.22
2. DockerFile  (0) 2023.06.22
1. Docker 설치 하기 for Windows  (0) 2023.06.22
Comments