|
vmType: "vz" |
|
rosetta: |
|
# Enable Rosetta for Linux. |
|
# Hint: try `softwareupdate --install-rosetta` if Lima gets stuck at `Installing rosetta...` |
|
enabled: true |
|
# Register rosetta to /proc/sys/fs/binfmt_misc |
|
binfmt: true |
|
images: |
|
- location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-amd64.img" |
|
arch: "x86_64" |
|
- location: "https://cloud-images.ubuntu.com/releases/22.04/release/ubuntu-22.04-server-cloudimg-arm64.img" |
|
arch: "aarch64" |
|
mounts: |
|
- location: "~/go" |
|
writable: true |
|
- location: "~/.cache" |
|
writable: true |
|
mountType: "virtiofs" |
|
|
|
# Docker config |
|
containerd: |
|
system: false |
|
user: false |
|
provision: |
|
- mode: system |
|
# This script defines the host.docker.internal hostname when hostResolver is disabled. |
|
# It is also needed for lima 0.8.2 and earlier, which does not support hostResolver.hosts. |
|
# Names defined in /etc/hosts inside the VM are not resolved inside containers when |
|
# using the hostResolver; use hostResolver.hosts instead (requires lima 0.8.3 or later). |
|
script: | |
|
#!/bin/sh |
|
sed -i 's/host.lima.internal.*/host.lima.internal host.docker.internal/' /etc/hosts |
|
- mode: system |
|
script: | |
|
#!/bin/bash |
|
set -eux -o pipefail |
|
command -v docker >/dev/null 2>&1 && exit 0 |
|
export DEBIAN_FRONTEND=noninteractive |
|
curl -fsSL https://get.docker.com | sh |
|
# NOTE: you may remove the lines below, if you prefer to use rootful docker, not rootless |
|
systemctl disable --now docker |
|
apt-get install -y uidmap dbus-user-session |
|
- mode: user |
|
script: | |
|
#!/bin/bash |
|
set -eux -o pipefail |
|
systemctl --user start dbus |
|
dockerd-rootless-setuptool.sh install |
|
docker context use rootless |
|
probes: |
|
- script: | |
|
#!/bin/bash |
|
set -eux -o pipefail |
|
if ! timeout 30s bash -c "until command -v docker >/dev/null 2>&1; do sleep 3; done"; then |
|
echo >&2 "docker is not installed yet" |
|
exit 1 |
|
fi |
|
if ! timeout 30s bash -c "until pgrep rootlesskit; do sleep 3; done"; then |
|
echo >&2 "rootlesskit (used by rootless docker) is not running" |
|
exit 1 |
|
fi |
|
hint: See "/var/log/cloud-init-output.log". in the guest |
|
hostResolver: |
|
# hostResolver.hosts requires lima 0.8.3 or later. Names defined here will also |
|
# resolve inside containers, and not just inside the VM itself. |
|
hosts: |
|
host.docker.internal: host.lima.internal |
|
portForwards: |
|
- guestSocket: "/run/user/{{.UID}}/docker.sock" |
|
hostSocket: "{{.Dir}}/sock/docker.sock" |
|
message: | |
|
To run `docker` on the host (assumes docker-cli is installed), run the following commands: |
|
------ |
|
docker context create lima-{{.Name}} --docker "host=unix://{{.Dir}}/sock/docker.sock" |
|
docker context use lima-{{.Name}} |
|
docker run hello-world |
|
------ |
Thank you for sharing. It looks so promising for my use case.
Had no blips and
docker run hello-world
works great.Issue
Is there something special I need to do to tell
docker
to useARCH=x86_64
instead ofaarch
?I did see some people tried to run it with a different arch, but it didn't so so well.
One thing I noticed is
limactl list
has it asARCH=aarch64
instead ofx86
/amd64
.Is there a way to tell docker that the
ARCH
is different from the one listed in limactl?Any debugging tips would be great.
UPDATE: Solution
Issue: This requires I pass
--platform
orARCH=
everywhere.apple m1 max
Sonoma 14.5
$ limactl --version limactl version 0.23.2 $ docker --version Docker version 27.2.0, build 3ab4256958 $ file $(which limactl) /opt/homebrew/bin/limactl: Mach-O 64-bit executable arm64