Go to file
Héctor Molinero Fernández 400683c210 v25
2021-06-22 21:08:46 +02:00
scripts Install noVNC from GitHub 2019-09-15 20:55:14 +02:00
.dockerignore First commit 2019-02-20 23:10:38 +01:00
.gitignore First commit 2019-02-20 23:10:38 +01:00
.gitlab-ci.yml Use Zstandard to transfer Docker images between CI jobs 2021-01-15 19:35:12 +01:00
Dockerfile Updated ReactOS to v0.4.14-RC-78 2021-06-22 20:45:32 +02:00
LICENSE.md Updated license year 2021-01-15 19:35:18 +01:00
Makefile Use Zstandard to transfer Docker images between CI jobs 2021-01-15 19:35:12 +01:00
README.md Define registry explicitly 2021-02-11 21:20:03 +01:00
run.sh Improvements to the build system imported from other projects 2019-09-02 21:49:16 +02:00
VERSION v25 2021-06-22 21:08:46 +02:00

ReactOS on Docker

A Docker image for the ReactOS operating system.

Start an instance

docker run --detach \
  --name qemu-reactos \
  --restart on-failure:3 \
  --publish 127.0.0.1:6080:6080/tcp \
  --privileged --env QEMU_KVM=true \
  docker.io/hectormolinero/qemu-reactos:latest

The instance will be available through a web browser from: http://localhost:6080/vnc.html

Environment variables

QEMU_CPU

Number of cores the VM is permitted to use (2 by default).

QEMU_RAM

Amount of memory the VM is permitted to use (1024M by default).

QEMU_DISK_SIZE

VM disk size (16G by default).

QEMU_DISK_FORMAT

VM disk format (qcow2 by default).

QEMU_KEYBOARD

VM keyboard layout (en-us by default).

QEMU_NET_DEVICE

VM network device (e1000 by default).

QEMU_BOOT_ORDER

VM boot order (cd by default).

QEMU_BOOT_MENU

VM boot menu (off by default).

QEMU_KVM

Start QEMU in KVM mode (false by default).

The --privileged option is required to use KVM in the container.

License

See the license file.