The fastest way to try ZimaOS out virtually

  1. Docker Compose from GitHub - qemus/qemu: QEMU in a Docker container.
  2. Latest ZimaOS IMG: https://github.com/IceWhaleTech/ZimaOS/releases/download/1.4.1/zimaos_zimacube-1.4.1_installer.img

Done in 30 seconds.


services:
qemu:
image: qemux/qemu
container_name: qemu
environment:
BOOT: “https://github.com/IceWhaleTech/ZimaOS/releases/download/1.4.1/zimaos_zimacube-1.4.1_installer.img
devices:
- /dev/kvm
- /dev/net/tun
cap_add:
- NET_ADMIN
ports:
- 8006:8006
volumes:
- ./qemu:/storage
restart: always
stop_grace_period: 2m

2 Likes