18 lines
480 B
YAML
18 lines
480 B
YAML
version: "3"
|
|
services:
|
|
vm:
|
|
container_name: qemu
|
|
image: kroese/docker-qemu:latest
|
|
environment:
|
|
CPU_CORES: "1"
|
|
RAM_SIZE: "512M"
|
|
DISK_SIZE: "16G"
|
|
BOOT: "https://releases.ubuntu.com/22.04.2/ubuntu-22.04.2-live-server-amd64.iso"
|
|
devices:
|
|
- /dev/kvm
|
|
cap_add:
|
|
- NET_ADMIN
|
|
ports:
|
|
- 22:22
|
|
restart: on-failure
|
|
|