https://github.com/anduin2017/anduinos-in-docker
https://github.com/anduin2017/anduinos-in-docker
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anduin2017/anduinos-in-docker
- Owner: Anduin2017
- License: other
- Created: 2025-07-08T09:09:12.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-08-05T08:15:26.000Z (10 months ago)
- Last Synced: 2025-09-12T03:55:28.907Z (9 months ago)
- Language: Shell
- Size: 17.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AnduinOS in Docker
[](https://gitlab.aiursoft.cn/anduin/AnduinOS-In-Docker/-/blob/master/LICENSE)
[](https://gitlab.aiursoft.cn/anduin/AnduinOS-In-Docker/-/pipelines)
[](https://gitlab.aiursoft.cn/anduin/AnduinOS-In-Docker/-/commits/master?ref_type=heads)
[](https://hub.docker.com/r/anduin2019/anduinos-in-docker)
This repository provides a Docker container to run AnduinOS. Only Linux is supported.
## Prerequisites
- Must be running on a Linux host.
- Docker installed on your machine.
- A compatible CPU with virtualization support (Intel VT-x or AMD-V).
## Run
To run AnduinOS in Docker, you can use the pre-built image available on Docker Hub:
```bash
docker pull anduin2019/anduinos-in-docker
mkdir -p vm_data
docker run -it \
--device /dev/kvm \
-p 8080:8080 \
-p 5900:5900 \
-v ./vm_data:/data/vmdisk \
anduin2019/anduinos-in-docker
```
## Build from source
To run AnduinOS in Docker, follow these steps:
```bash
docker build -t anduinos-vm .
mkdir -p vm_data
docker run -it \
--device /dev/kvm \
-p 8080:8080 \
-p 5900:5900 \
-v ./vm_data:/data/vmdisk \
anduinos-vm
```
And then open your browser and visit [http://localhost:8080/vnc_auto.html](http://localhost:8080/vnc_auto.html) to access AnduinOS.