[macos] Brew 설치 도커에 도커 엔진이 포함되어 있지 않습니까?
추출에서 도커를 설정하려고 시도하지만 엔진이 공식 공식에 포함되지 않은 것 같습니다.
brew install docker-machine docker-compose
그렇다면 이것 만 클라이언트를 설치합니까? 엔진 / 데몬에 통이 없습니까?
답변
달리기를 시도하십시오
brew install docker
Docker 엔진이 설치되며 Mac에서 Docker-Machine (+ VirtualBox)을 실행해야합니다.
당신은 설치하려는 경우 새로운 Mac 용 부두 노동자 , VirtualBox를 필요로하지 않습니다 , 당신은 브루의 술통을 통해 그것을 설치할 수 있습니다 :
brew cask install docker
open /Applications/Docker.app
답변
다음 단계는 macOS Sierra 10.12.4에서 제대로 작동합니다. brew가 Docker를 설치 한 후에는에서 docker
명령 (기호 링크)을 사용할 수 없습니다 /usr/local/bin
. Docker 앱을 처음 실행하면이 심볼릭 링크가 만들어집니다. 아래의 자세한 단계를 참조하십시오.
-
Docker를 설치하십시오.
brew cask install docker
-
Docker를 시작하십시오.
- 를 눌러 ⌘+를 Space불러옵니다 스포트라이트 검색 및 입력
Docker
도커를 시작합니다. - 에서 부두 노동자는 특권 액세스가 필요 대화 상자를 클릭 확인 .
- 비밀번호를 입력하고 확인을 클릭하십시오 .
Docker가 이런 방식으로 시작되면 Docker whale 아이콘이 상태 메뉴에 나타납니다. 즉시 고래 아이콘이 나타납니다에 대한 심볼릭 링크로
docker
,docker-compose
,docker-credential-osxkeychain
및docker-machine
생성됩니다/usr/local/bin
.$ ls -l /usr/local/bin/docker* lrwxr-xr-x 1 susam domain Users 67 Apr 12 14:14 /usr/local/bin/docker -> /Users/susam/Library/Group Containers/group.com.docker/bin/docker lrwxr-xr-x 1 susam domain Users 75 Apr 12 14:14 /usr/local/bin/docker-compose -> /Users/susam/Library/Group Containers/group.com.docker/bin/docker-compose lrwxr-xr-x 1 susam domain Users 90 Apr 12 14:14 /usr/local/bin/docker-credential-osxkeychain -> /Users/susam/Library/Group Containers/group.com.docker/bin/docker-credential-osxkeychain lrwxr-xr-x 1 susam domain Users 75 Apr 12 14:14 /usr/local/bin/docker-machine -> /Users/susam/Library/Group Containers/group.com.docker/bin/docker-machine
- 를 눌러 ⌘+를 Space불러옵니다 스포트라이트 검색 및 입력
-
상태 메뉴에서 도커 고래 아이콘을 클릭하고도 커가 실행 중임 을 표시 할 때까지 기다리십시오 .
-
도 커가 제대로 작동하는지 테스트하십시오.
$ docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world 78445dd45222: Pull complete Digest: sha256:c5515758d4c5e1e838e9cd307f6c6a0d620b5e07e6f927b07d05f6d12a1ac8d7 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. 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://cloud.docker.com/ For more examples and ideas, visit: https://docs.docker.com/engine/userguide/ $ docker version Client: Version: 17.03.1-ce API version: 1.27 Go version: go1.7.5 Git commit: c6d412e Built: Tue Mar 28 00:40:02 2017 OS/Arch: darwin/amd64 Server: Version: 17.03.1-ce API version: 1.27 (minimum version 1.12) Go version: go1.7.5 Git commit: c6d412e Built: Fri Mar 24 00:00:50 2017 OS/Arch: linux/amd64 Experimental: true
-
docker-machine
가상 머신을 작성하는 데 사용 하려는 경우 VirtualBox를 설치하십시오.brew cask install virtualbox
VirtualBox가 설치되어 있지 않으면
docker-machine
다음 오류와 함께 실패합니다.$ docker-machine create manager Running pre-create checks... Error with pre-create check: "VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path"
답변
Homebrew와 함께 Mac 용 Docker를 설치하려면 :
brew cask install docker
명령 행 완료를 설치하려면 다음을 수행하십시오.
brew install bash-completion
brew install docker-completion
brew install docker-compose-completion
brew install docker-machine-completion