Docker Community Edition for Mac 설정(docker for mac)

4051 단어 MacDocker

문장 요약


Mac OS X에 docker를 설치하고 확인 동작을 작성합니다.
그리고 헬로월드.

문장의 대상 독자

  • 앞으로 도커를 설치한 사람
  • 사용하는 컴퓨터는 Mac
  • 평균 읽기 시간


    해설을 건너뛰면 10분도 안 돼서 설정이 완성됩니다.
    기사의 해설을 보니 15분 정도 걸립니다.

    일을 시작하다


    1. 시스템 요구 사항 확인


    설치 환경이 다음 요구 사항을 충족하는지 확인하십시오.
  • CPU: 2010년 이후 MacPC
  • [상세] CPU 요구 사항을 확인하는 방법은 다음과 같습니다.
  • OS: macOS El Capitan10.11 이상
  • 요구 사항을 충족시키려면 다음 작업을 계속하십시오.

    2. docker 디스크 이미지 다운로드


    dcoker storedocker까지.dmg 다운로드.
    ※ Dockerstore 계정이 필요하므로 없는 사람은 등록하세요.
    작업 이미지

    이미지 오른쪽의 "Please Login to Download"에서 로그인 폼으로 건너뜁니다.
    로그인 후 원래 화면으로 돌아가기
    "Please Login to Download"가 "get docker"로 변경되었습니다.

    3. 애플리케이션 배포 및 배포


    방금 다운로드한 도커.응용 프로그램을 확장하려면 dmg 클릭
    마법사 (배치할 때 나타나는 화면) 의 설명에 따라 응용 프로그램 디렉터리에 배치합니다.

    도커의 고래는 귀엽죠.
    등에 컨테이너가 실린 곳도 이상하다.

    4.dcoker 시작


    응용 프로그램 디렉터리로 이동하는docker.앱을 두 번 클릭하여 시작합니다.
    시작 후 콘솔을 열어 설치가 성공했는지 확인하십시오.
    $ docker version
    Client: Docker Engine - Community
     Version:           18.09.0
     API version:       1.39
     Go version:        go1.10.4
     Git commit:        4d60db4
     Built:             Wed Nov  7 00:47:43 2018
     OS/Arch:           darwin/amd64
     Experimental:      false
    
    Server: Docker Engine - Community
     Engine:
      Version:          18.09.0
      API version:      1.39 (minimum version 1.12)
      Go version:       go1.10.4
      Git commit:       4d60db4
      Built:            Wed Nov  7 00:55:00 2018
      OS/Arch:          linux/amd64
      Experimental:     false
    
    $ docker-compose --version
    docker-compose version 1.23.2, build 1110ad01
    
    $ docker-machine --version
    docker-machine version 0.16.0, build 702c267f
    
    
    위의 명령을 실행하고 정상적인 응답으로 돌아가면
    설치가 완료되었습니다.
    그리고 자유롭게 사용하세요!!

    경품(hello-world)

    $ docker run hello-world
    Unable to find image 'hello-world:latest' locally
    latest: Pulling from library/hello-world
    9db2ca6ccae0: Pull complete
    Digest: sha256:4b8ff392a12ed9ea17784bd3c9a8b1fa3299cac44aca35a85c90c5e3c7afacdc
    Status: Downloaded newer image for hello-world:latest
    
    Hello from Docker!
    This message shows that your installation appears to be working correctly.
    
    To generate this message, Docker took the following steps:
     1. The Docker client contacted the Docker daemon.
     2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
        (amd64)
     3. The Docker daemon created a new container from that image which runs the
        executable that produces the output you are currently reading.
     4. The Docker daemon streamed that output to the Docker client, which sent it
        to your terminal.
    
    To try something more ambitious, you can run an Ubuntu container with:
     $ docker run -it ubuntu bash
    
    Share images, automate workflows, and more with a free Docker ID:
     https://hub.docker.com/
    
    For more examples and ideas, visit:
     https://docs.docker.com/engine/userguide/
    

    좋은 웹페이지 즐겨찾기