qemu-arm/docker-compose.yml
2023-04-26 19:45:53 +02:00

18 lines
483 B
YAML

version: "3"
services:
qemu:
container_name: qemu
image: ghcr.io/qemu-tools/qemu-docker:latest
environment:
CPU_CORES: "1"
RAM_SIZE: "512M"
DISK_SIZE: "16G"
BOOT: "http://www.example.com/image.iso"
devices:
- /dev/kvm
cap_add:
- NET_ADMIN
ports:
- 22:22
restart: on-failure
stop_grace_period: 1m