mirror of
https://github.com/dockur/windows.git
synced 2025-10-28 11:45:50 +00:00
Update readme.md
This commit is contained in:
parent
1c722e21a1
commit
0d3f0ac077
1 changed files with 21 additions and 9 deletions
30
readme.md
30
readme.md
|
|
@ -32,20 +32,32 @@ To use this project, create a `docker-compose.yml` file with the following conte
|
||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
windows:
|
windows:
|
||||||
|
image: tj5miniop/windows
|
||||||
container_name: windows
|
container_name: windows
|
||||||
image: dockurr/windows
|
|
||||||
ports:
|
|
||||||
- "8006:8006"
|
|
||||||
volumes:
|
|
||||||
- /var/win:/storage
|
|
||||||
environment:
|
environment:
|
||||||
- VERSION=win11
|
VERSION: "win11"
|
||||||
- LANGUAGE=English
|
RAM_SIZE: "4G" # Change the RAM Size
|
||||||
- USERNAME=bill
|
DISK_SIZE: "64G" # Change the disk size
|
||||||
- PASSWORD=gates
|
CPU_CORES: "2" #Change this to Change the number of CPU Cres the VM has access to
|
||||||
|
devices:
|
||||||
|
- /dev/kvm
|
||||||
|
cap_add:
|
||||||
|
- NET_ADMIN
|
||||||
|
ports:
|
||||||
|
- 8006:8006
|
||||||
|
- 3389:3389/tcp
|
||||||
|
- 3389:3389/udp
|
||||||
|
stop_grace_period: 2m
|
||||||
|
|
||||||
```
|
```
|
||||||
Then, run `docker-compose up -d` to start the container.
|
Then, run `docker-compose up -d` to start the container.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
You could also locally build the image by -
|
||||||
|
### cloning the repo using git
|
||||||
|
### using docker build to build the image (Tip - Use the -t argument to give it a unique name in the username/image format eg - tj5miniop/windows11)
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
|
|
||||||
### Why do Microsoft Store, Windows Activation, and some program installations not work?
|
### Why do Microsoft Store, Windows Activation, and some program installations not work?
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue