mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2024-11-23 02:39:59 +08:00
Add WIDTH and HEIGHT environment variables
This commit is contained in:
parent
2e185aa2c3
commit
5469cb8a58
@ -1,5 +1,6 @@
|
|||||||
|Version|Date|Notes|
|
|Version|Date|Notes|
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
|
| |2021-03-03|Add WIDTH and HEIGHT to set the x and y resolutions, use in conjuction with serial numbers.|
|
||||||
| |2021-03-02|Add ADDITIONAL_PORTS, for example `-e ADDITIONAL_PORTS='hostfwd=tcp::23-:23,'`|
|
| |2021-03-02|Add ADDITIONAL_PORTS, for example `-e ADDITIONAL_PORTS='hostfwd=tcp::23-:23,'`|
|
||||||
|4.0|2021-02-27|Add big-sur support. Use `sickcodes/docker-osx:big-sur` or build using `--build-arg VERSION=11`|
|
|4.0|2021-02-27|Add big-sur support. Use `sickcodes/docker-osx:big-sur` or build using `--build-arg VERSION=11`|
|
||||||
| |2021-02-26|Change `-e NOPICKER=true` to simply do `sed -i '/^.*InstallMedia.*/d' Launch.sh` and `export BOOTDISK=/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore-nopicker.qcow2`.|
|
| |2021-02-26|Change `-e NOPICKER=true` to simply do `sed -i '/^.*InstallMedia.*/d' Launch.sh` and `export BOOTDISK=/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore-nopicker.qcow2`.|
|
||||||
|
19
Dockerfile
19
Dockerfile
@ -259,8 +259,19 @@ ENV NETWORKING=vmxnet3
|
|||||||
|
|
||||||
ENV NOPICKER=false
|
ENV NOPICKER=false
|
||||||
|
|
||||||
ENV UNIQUE=false
|
# Boolean for generating a bootdisk with new random serials.
|
||||||
# Boolean for generating a bootdisk with new serials.
|
ENV GENERATE_UNIQUE=false
|
||||||
|
|
||||||
|
# Boolean for generating a bootdisk with specific serials.
|
||||||
|
ENV GENERATE_SPECIFIC=false
|
||||||
|
|
||||||
|
# boolean for skipping the disk selection menu at in the boot process
|
||||||
|
ENV NOPICKER=false
|
||||||
|
|
||||||
|
# The x and y coordinates for resolution.
|
||||||
|
# Must be used with either -e GENERATE_UNIQUE=true or -e GENERATE_SPECIFIC=true.
|
||||||
|
ENV WIDTH=1920
|
||||||
|
ENV HEIGHT=1080
|
||||||
|
|
||||||
VOLUME ["/tmp/.X11-unix"]
|
VOLUME ["/tmp/.X11-unix"]
|
||||||
|
|
||||||
@ -299,6 +310,8 @@ CMD sudo chown -R $(id -u):$(id -g) /dev/kvm /dev/snd "${IMAGE_PATH}" "${BOOTDIS
|
|||||||
--count 1 \
|
--count 1 \
|
||||||
--tsv ./serial.tsv \
|
--tsv ./serial.tsv \
|
||||||
--bootdisks \
|
--bootdisks \
|
||||||
|
--width "${WIDTH:-1920}" \
|
||||||
|
--height "${HEIGHT:-1080}" \
|
||||||
--output-bootdisk "${BOOTDISK:-/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}" \
|
--output-bootdisk "${BOOTDISK:-/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}" \
|
||||||
--output-env "${ENV:=/env}" || exit 1 \
|
--output-env "${ENV:=/env}" || exit 1 \
|
||||||
; } \
|
; } \
|
||||||
@ -310,6 +323,8 @@ CMD sudo chown -R $(id -u):$(id -g) /dev/kvm /dev/snd "${IMAGE_PATH}" "${BOOTDIS
|
|||||||
--board-serial "${BOARD_SERIAL}" \
|
--board-serial "${BOARD_SERIAL}" \
|
||||||
--uuid "${UUID}" \
|
--uuid "${UUID}" \
|
||||||
--mac-address "${MAC_ADDRESS}" \
|
--mac-address "${MAC_ADDRESS}" \
|
||||||
|
--width "${WIDTH:-1920}" \
|
||||||
|
--height "${HEIGHT:-1080}" \
|
||||||
--output-bootdisk "${BOOTDISK:-/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}" || exit 1 \
|
--output-bootdisk "${BOOTDISK:-/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}" || exit 1 \
|
||||||
; } \
|
; } \
|
||||||
; case "$(file --brief /bootdisk)" in \
|
; case "$(file --brief /bootdisk)" in \
|
||||||
|
76
README.md
76
README.md
@ -493,6 +493,43 @@ sudo nohup dockerd &
|
|||||||
sudo systemctl enable docker
|
sudo systemctl enable docker
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# How to Forward Additional Ports from the guest.
|
||||||
|
|
||||||
|
This is how it visually looks:
|
||||||
|
|
||||||
|
`host:10023 <-> 10023:container:10023 <-> 80:guest`
|
||||||
|
|
||||||
|
```bash
|
||||||
|
On the host
|
||||||
|
```bash
|
||||||
|
docker run -it \
|
||||||
|
--device /dev/kvm \
|
||||||
|
-p 50922:10022 \
|
||||||
|
-e ADDITIONAL_PORTS='hostfwd=tcp::10023-:80,' \
|
||||||
|
-p 10023:10023 \
|
||||||
|
sickcodes/docker-osx:auto
|
||||||
|
```
|
||||||
|
|
||||||
|
Inside the container:
|
||||||
|
```bash
|
||||||
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||||
|
|
||||||
|
brew install nginx
|
||||||
|
sudo sed -i -e 's/8080/80/' /usr/local/etc/nginx/nginx.confcd
|
||||||
|
# sudo nginx -s stop
|
||||||
|
sudo nginx
|
||||||
|
```
|
||||||
|
|
||||||
|
nginx should appear on the host at port 10023.
|
||||||
|
|
||||||
|
You can string multiple statements, for example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
-e ADDITIONAL_PORTS='hostfwd=tcp::10023-:80,hostfwd=tcp::10043-:443,'
|
||||||
|
-p 10023:10023 \
|
||||||
|
-p 10043:10043 \
|
||||||
|
```
|
||||||
|
|
||||||
# How to Enable Network Forwarding
|
# How to Enable Network Forwarding
|
||||||
|
|
||||||
Allow ipv4 forwarding for bridged networking connections:
|
Allow ipv4 forwarding for bridged networking connections:
|
||||||
@ -706,11 +743,13 @@ For serial numbers, generate them in `./custom` OR make docker generate them at
|
|||||||
At any time, verify your serial number before logging in iCloud, etc.
|
At any time, verify your serial number before logging in iCloud, etc.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# this is a quick way to check your serial number via cli inside OSX
|
||||||
ioreg -l | grep IOPlatformSerialNumber
|
ioreg -l | grep IOPlatformSerialNumber
|
||||||
|
|
||||||
# or from the host
|
# or from the host
|
||||||
sshpass -p alpine ssh user@localhost -p 50922 'ioreg -l | grep IOPlatformSerialNumber'
|
sshpass -p 'alpine' ssh user@localhost -p 50922 'ioreg -l | grep IOPlatformSerialNumber'
|
||||||
```
|
```
|
||||||
|
# This example generates a random set of serial numbers at runtime, headlessly
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# proof of concept only, generates random serial numbers, headlessly, and quits right after.
|
# proof of concept only, generates random serial numbers, headlessly, and quits right after.
|
||||||
@ -724,6 +763,8 @@ docker run --rm -it \
|
|||||||
sickcodes/docker-osx:auto
|
sickcodes/docker-osx:auto
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# This example generates a specific set of serial numbers at runtime
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# run the same as above 17gb auto image, with SSH, with nopicker, and save the bootdisk for later.
|
# run the same as above 17gb auto image, with SSH, with nopicker, and save the bootdisk for later.
|
||||||
# you don't need to save the bootdisk IF you supply specific serial numbers!
|
# you don't need to save the bootdisk IF you supply specific serial numbers!
|
||||||
@ -743,6 +784,7 @@ docker run -it \
|
|||||||
sickcodes/docker-osx:auto
|
sickcodes/docker-osx:auto
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# This example generates a specific set of serial numbers at runtime, with your existing image, at 1000x1000 display resolution.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# run an existing image in current directory, with a screen, with SSH, with nopicker, and save the bootdisk for later.
|
# run an existing image in current directory, with a screen, with SSH, with nopicker, and save the bootdisk for later.
|
||||||
@ -762,6 +804,8 @@ docker run -it \
|
|||||||
-e BOARD_SERIAL="C027251024NJG36UE" \
|
-e BOARD_SERIAL="C027251024NJG36UE" \
|
||||||
-e UUID="5CCB366D-9118-4C61-A00A-E5BAF3BED451" \
|
-e UUID="5CCB366D-9118-4C61-A00A-E5BAF3BED451" \
|
||||||
-e MAC_ADDRESS="A8:5C:2C:9A:46:2F" \
|
-e MAC_ADDRESS="A8:5C:2C:9A:46:2F" \
|
||||||
|
-e WIDTH=1000 \
|
||||||
|
-e HEIGHT=1000 \
|
||||||
-e BOOTDISK=/bootdisk \
|
-e BOOTDISK=/bootdisk \
|
||||||
-v "${PWD}/mynewbootdisk.qcow:/bootdisk" \
|
-v "${PWD}/mynewbootdisk.qcow:/bootdisk" \
|
||||||
-v "${PWD}/mac_hdd_ng.img:/image" \
|
-v "${PWD}/mac_hdd_ng.img:/image" \
|
||||||
@ -780,6 +824,36 @@ Or you can generate them inside the `./custom` folder. And then use:
|
|||||||
-e MAC_ADDRESS="" \
|
-e MAC_ADDRESS="" \
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Change Resolution Docker-OSX
|
||||||
|
|
||||||
|
The display resolution is controlled by this line:
|
||||||
|
|
||||||
|
https://github.com/sickcodes/Docker-OSX/blob/master/custom/config-nopicker-custom.plist#L819
|
||||||
|
|
||||||
|
However, you need to mount that disk. Boring!
|
||||||
|
|
||||||
|
Instead, you can simply add the following to any image:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
-e GENERATE_UNIQUE=true \
|
||||||
|
-e WIDTH=1920 \
|
||||||
|
-e HEIGHT=1080 \
|
||||||
|
```
|
||||||
|
|
||||||
|
It will take around 1 minute longer to boot because it will make a new boot partition.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
-e GENERATE_SPECIFIC=true \
|
||||||
|
-e WIDTH=1920 \
|
||||||
|
-e HEIGHT=1080 \
|
||||||
|
-e SERIAL="" \
|
||||||
|
-e BOARD_SERIAL="" \
|
||||||
|
-e UUID="" \
|
||||||
|
-e MAC_ADDRESS="" \
|
||||||
|
```
|
||||||
|
|
||||||
|
Must be used with either `-e GENERATE_UNIQUE=true` or `-e GENERATE_SPECIFIC=true`.
|
||||||
|
|
||||||
#### Persistence from generating serial numbers is obviously ideal:
|
#### Persistence from generating serial numbers is obviously ideal:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@ -816,7 +816,7 @@
|
|||||||
<key>ReplaceTabWithSpace</key>
|
<key>ReplaceTabWithSpace</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>Resolution</key>
|
<key>Resolution</key>
|
||||||
<string>1920x1080@32</string>
|
<string>{{WIDTH}}x{{HEIGHT}}@32</string>
|
||||||
<key>SanitiseClearScreen</key>
|
<key>SanitiseClearScreen</key>
|
||||||
<false/>
|
<false/>
|
||||||
<key>TextRenderer</key>
|
<key>TextRenderer</key>
|
||||||
|
@ -15,12 +15,14 @@ help_text="Usage: generate-specific-bootdisk.sh
|
|||||||
|
|
||||||
General options:
|
General options:
|
||||||
--model <string> Device model, e.g. 'iMacPro1,1'
|
--model <string> Device model, e.g. 'iMacPro1,1'
|
||||||
--serial <filename> Device Serial number.
|
--serial <filename> Device Serial number
|
||||||
--board-serial <filename> Board Serial number.
|
--board-serial <filename> Board Serial number
|
||||||
--uuid <filename> SmUUID.
|
--uuid <filename> SmUUID
|
||||||
--mac-address <string> Used to set the ROM value; lowercased and without a colon.
|
--mac-address <string> Used to set the ROM value; lowercased and without a colon
|
||||||
--output-bootdisk <filename> Optionally change the bootdisk output filename.
|
--width <string> Resolution x axis length in pixels (default 1920)
|
||||||
--custom-plist <filename> Optionally change the input plist.
|
--height <string> Resolution y axis length in pixels (default 1080
|
||||||
|
--output-bootdisk <filename> Optionally change the bootdisk output filename
|
||||||
|
--custom-plist <filename> Optionally change the input plist
|
||||||
|
|
||||||
--help, -h, help Display this help and exit
|
--help, -h, help Display this help and exit
|
||||||
|
|
||||||
@ -31,7 +33,9 @@ Example:
|
|||||||
--board-serial C027251024NJG36UE \
|
--board-serial C027251024NJG36UE \
|
||||||
--uuid 5CCB366D-9118-4C61-A00A-E5BAF3BED451 \
|
--uuid 5CCB366D-9118-4C61-A00A-E5BAF3BED451 \
|
||||||
--mac-address A8:5C:2C:9A:46:2F \
|
--mac-address A8:5C:2C:9A:46:2F \
|
||||||
--output-bootdisk OpenCore-nopicker.qcow2
|
--output-bootdisk OpenCore-nopicker.qcow2 \
|
||||||
|
--widht 1920 \
|
||||||
|
--height 1080
|
||||||
|
|
||||||
Author: Sick.Codes https://sick.codes/
|
Author: Sick.Codes https://sick.codes/
|
||||||
Project: https://github.com/sickcodes/Docker-OSX/
|
Project: https://github.com/sickcodes/Docker-OSX/
|
||||||
@ -97,6 +101,26 @@ while (( "$#" )); do
|
|||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
--width=* )
|
||||||
|
export WIDTH="${1#*=}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--width* )
|
||||||
|
export WIDTH="${2}"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
|
--height=* )
|
||||||
|
export HEIGHT="${1#*=}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--height* )
|
||||||
|
export HEIGHT="${2}"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
--output-bootdisk=* )
|
--output-bootdisk=* )
|
||||||
export OUTPUT_QCOW="${1#*=}"
|
export OUTPUT_QCOW="${1#*=}"
|
||||||
shift
|
shift
|
||||||
@ -153,6 +177,8 @@ generate_bootdisk () {
|
|||||||
-e s/{{BOARD_SERIAL}}/"${BOARD_SERIAL}"/g \
|
-e s/{{BOARD_SERIAL}}/"${BOARD_SERIAL}"/g \
|
||||||
-e s/{{UUID}}/"${UUID}"/g \
|
-e s/{{UUID}}/"${UUID}"/g \
|
||||||
-e s/{{ROM}}/"${ROM}"/g \
|
-e s/{{ROM}}/"${ROM}"/g \
|
||||||
|
-e s/{{WIDTH}}/"${WIDTH:-1920}"/g \
|
||||||
|
-e s/{{HEIGHT}}/"${HEIGHT:-1080}"/g \
|
||||||
"${PLIST_MASTER}" > ./tmp.config.plist || exit 1
|
"${PLIST_MASTER}" > ./tmp.config.plist || exit 1
|
||||||
else
|
else
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
@ -164,6 +190,9 @@ Error: one of the following values is missing:
|
|||||||
--uuid "${UUID:-MISSING}"
|
--uuid "${UUID:-MISSING}"
|
||||||
--mac-address "${MAC_ADDRESS:-MISSING}"
|
--mac-address "${MAC_ADDRESS:-MISSING}"
|
||||||
|
|
||||||
|
--width "${WIDTH:-1920}"
|
||||||
|
--height "${HEIGHT:-1080}"
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
@ -21,6 +21,8 @@ General options:
|
|||||||
--output-bootdisk <filename> Optionally change the bootdisk qcow output filename. Useless when count > 1.
|
--output-bootdisk <filename> Optionally change the bootdisk qcow output filename. Useless when count > 1.
|
||||||
--output-env <filename> Optionally change the bootdisk env filename. Useless when count > 1.
|
--output-env <filename> Optionally change the bootdisk env filename. Useless when count > 1.
|
||||||
--output-dir <directory> Optionally change the script output location.
|
--output-dir <directory> Optionally change the script output location.
|
||||||
|
--width <string> Resolution x axis length in pixels (default 1920)
|
||||||
|
--height <string> Resolution y axis length in pixels (default 1080
|
||||||
|
|
||||||
--help, -h, help Display this help and exit
|
--help, -h, help Display this help and exit
|
||||||
--plists Create corresponding config.plists for each serial set.
|
--plists Create corresponding config.plists for each serial set.
|
||||||
@ -132,6 +134,27 @@ while (( "$#" )); do
|
|||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
--width=* )
|
||||||
|
export WIDTH="${1#*=}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
|
--width* )
|
||||||
|
export WIDTH="${2}"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
|
--height=* )
|
||||||
|
export HEIGHT="${1#*=}"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--height* )
|
||||||
|
export HEIGHT="${2}"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
|
||||||
--plists )
|
--plists )
|
||||||
export CREATE_PLISTS=1
|
export CREATE_PLISTS=1
|
||||||
shift
|
shift
|
||||||
@ -231,6 +254,8 @@ export SERIAL="${SERIAL}"
|
|||||||
export BOARD_SERIAL="${BOARD_SERIAL}"
|
export BOARD_SERIAL="${BOARD_SERIAL}"
|
||||||
export UUID="${UUID}"
|
export UUID="${UUID}"
|
||||||
export MAC_ADDRESS="${MAC_ADDRESS}"
|
export MAC_ADDRESS="${MAC_ADDRESS}"
|
||||||
|
export WIDTH="${WIDTH:=1920}"
|
||||||
|
export HEIGHT="${HEIGHT:=1080}"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# plist required for bootdisks, so create anyway.
|
# plist required for bootdisks, so create anyway.
|
||||||
@ -244,6 +269,8 @@ EOF
|
|||||||
-e s/{{BOARD_SERIAL}}/"${BOARD_SERIAL}"/g \
|
-e s/{{BOARD_SERIAL}}/"${BOARD_SERIAL}"/g \
|
||||||
-e s/{{UUID}}/"${UUID}"/g \
|
-e s/{{UUID}}/"${UUID}"/g \
|
||||||
-e s/{{ROM}}/"${ROM}"/g \
|
-e s/{{ROM}}/"${ROM}"/g \
|
||||||
|
-e s/{{WIDTH}}/"${WIDTH}"/g \
|
||||||
|
-e s/{{HEIGHT}}/"${HEIGHT}"/g \
|
||||||
"${PLIST_MASTER}" > "${OUTPUT_DIRECTORY}/plists/${SERIAL}.config.plist" || exit 1
|
"${PLIST_MASTER}" > "${OUTPUT_DIRECTORY}/plists/${SERIAL}.config.plist" || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user