mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-12 15:25:23 +00:00
- merge base.yml and docker-ce.yml to docker-for-mac.yml - Adjust the README Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
30 lines
1001 B
Markdown
30 lines
1001 B
Markdown
# Docker for Mac
|
|
|
|
[`docker-for-mac.yml`](./docker-for-mac.yml) contains an example use
|
|
of the open source components of Docker for Mac. The example has
|
|
support for controlling `dockerd` from the host via `vsudd` and port
|
|
forwarding with VPNKit. It requires HyperKit, VPNKit and a Docker
|
|
client on the host to run. The easiest way to install these at the
|
|
moment is to install a recent version of Docker for Mac.
|
|
|
|
To build it with the latest Docker CE:
|
|
|
|
```
|
|
$ linuxkit build docker-for-mac.yml
|
|
```
|
|
|
|
To run the VM with a 4G disk:
|
|
|
|
```
|
|
linuxkit run hyperkit -networking=vpnkit -vsock-ports=2376 -disk size=4096M -data-file ./metadata.json docker-for-mac
|
|
```
|
|
|
|
In another terminal you should now be able to access docker via the
|
|
socket `guest.00000947` in the state directory
|
|
(`docker-for-mac-state/` by default):
|
|
|
|
```
|
|
$ docker -H unix://docker-for-mac-state/guest.00000948 ps
|
|
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
|
```
|