mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2024-11-22 18:29:58 +08:00
Update README.md
add instructions to change resolution after the container is created
This commit is contained in:
parent
5dc2f4fd04
commit
9ccb93101d
17
README.md
17
README.md
@ -883,6 +883,23 @@ Here's a few other resolutions! If you resolution is invalid, it will default to
|
||||
-e HEIGHT=1600 \
|
||||
```
|
||||
|
||||
#### This example shows how to change resolution after the container is created.
|
||||
|
||||
First step is to stop the docker daemon
|
||||
```
|
||||
sudo systemctl stop docker
|
||||
```
|
||||
The second step is to change container config in
|
||||
```
|
||||
/var/lib/docker/containers/[container-id]/config.v2.json
|
||||
```
|
||||
(Suppose your original WIDTH is 1024 and HEIGHT is 768, you can search 1024 and replace it with the new value. Same for 768.)
|
||||
|
||||
The last step is to restart the docker daemon
|
||||
```
|
||||
sudo systemctl restart docker
|
||||
```
|
||||
|
||||
### Mounting physical disks in Mac OSX
|
||||
|
||||
Pass the disk into the container as a volume and then pass the disk again into QEMU command line extras with.
|
||||
|
Loading…
Reference in New Issue
Block a user