Add vim and nano to the container, expand on ipv4 forwarding docs, add info about ${DISPLAY:-:0.0}

This commit is contained in:
sickcodes 2020-10-05 08:01:45 +00:00
parent 0b40480158
commit 3972e009de
3 changed files with 77 additions and 14 deletions

View File

@ -26,3 +26,7 @@ These credits refer to the contributors to this repository:
[@jimdigriz](https://github.com/jimdigriz) - Epic fixes: image size, shellisms, fallback2kvm, unprivileged mode https://github.com/sickcodes/Docker-OSX/pull/82 [@jimdigriz](https://github.com/jimdigriz) - Epic fixes: image size, shellisms, fallback2kvm, unprivileged mode https://github.com/sickcodes/Docker-OSX/pull/82
[@NickZhouNan](https://github.com/NickZhouNan) - Bug fix with changed WORKDIR
[@MrBenFTW](https://github.com/MrBenFTW) - Added IP forwarding hot tips, useful for boosting bridged networking in remote environments.

View File

@ -71,8 +71,9 @@ RUN tee -a /etc/pacman.conf <<< '[community-testing]' \
&& tee -a /etc/pacman.conf <<< 'Include = /etc/pacman.d/mirrorlist' && tee -a /etc/pacman.conf <<< 'Include = /etc/pacman.d/mirrorlist'
RUN pacman -Syu --noconfirm \ RUN pacman -Syu --noconfirm \
&& pacman -S sudo git make automake gcc python go autoconf cmake pkgconf alsa-utils fakeroot --noconfirm \ && pacman -S sudo git make automake gcc python go autoconf cmake pkgconf alsa-utils fakeroot vim nano --noconfirm \
&& yes | pacman -Scc \ && yes | pacman -Scc \
&& ln -s /bin/vim /bin/vi \
&& useradd arch -p arch \ && useradd arch -p arch \
&& tee -a /etc/sudoers <<< 'arch ALL=(ALL) NOPASSWD: ALL' \ && tee -a /etc/sudoers <<< 'arch ALL=(ALL) NOPASSWD: ALL' \
&& mkdir /home/arch \ && mkdir /home/arch \

View File

@ -26,32 +26,40 @@ Upstream Credits: OSX-KVM project among many others: https://github.com/kholia/O
Docker Hub: https://hub.docker.com/r/sickcodes/docker-osx Docker Hub: https://hub.docker.com/r/sickcodes/docker-osx
### Other cool Docker-QEMU based projects:
[Run iOS in a Docker with Docker-eyeOS](https://github.com/sickcodes/Docker-eyeOS) - [https://github.com/sickcodes/Docker-eyeOS](https://github.com/sickcodes/Docker-eyeOS)
Pull requests, suggestions very welcome! Pull requests, suggestions very welcome!
```bash ```bash
docker pull sickcodes/docker-osx:latest docker pull sickcodes/docker-osx:latest
docker run --device /dev/kvm --device /dev/snd -v /tmp/.X11-unix:/tmp/.X11-unix sickcodes/docker-osx:latest docker run --device /dev/kvm \
--device /dev/snd \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e "DISPLAY=${DISPLAY:-:0.0}" \
sickcodes/docker-osx:latest
# press ctrl G if your mouse gets stuck # press ctrl G if your mouse gets stuck
# scroll down to troubleshooting if you have problems # scroll down to troubleshooting if you have problems
# need more RAM and SSH on 0.0.0.0:50922? # need more RAM and SSH on localhost -p 50922?
docker run --device /dev/kvm \ docker run --device /dev/kvm \
--device /dev/snd \ -e "DISPLAY=${DISPLAY:-:0.0}" \
-e RAM=4 \ --device /dev/snd \
-p 50922:10022 \ -e RAM=4 \
-v /tmp/.X11-unix:/tmp/.X11-unix \ -p 50922:10022 \
sickcodes/docker-osx:latest -v /tmp/.X11-unix:/tmp/.X11-unix \
sickcodes/docker-osx:latest
ssh fullname@localhost -p 50922 ssh fullname@localhost -p 50922
``` ```
# Requirements: KVM on the host # Requirements: KVM on the host
Need to turn on hardware virtualization in your BIOS, very easy to do. Need to turn on hardware virtualization in your BIOS, very easy to do.
@ -69,16 +77,38 @@ sudo yum install libvirt qemu-kvm -y
# then run # then run
sudo systemctl enable libvirtd.service sudo systemctl enable libvirtd.service
sudo systemctl enable virtlogd.service sudo systemctl enable virtlogd.service
sudo modprobe kvm sudo modprobe kvm
# enable network forwarding # reboot
nano /etc/sysctl.conf ```
Uncomment or add this line:
net.ipv4.ip_forward=1
# How to Enable Network Forwarding
Allow ipv4 forwarding for bridged networking connections:
This is not required for LOCAL installations and may cause containers behind [VPN's to leak host IP](https://sick.codes/cve-2020-15590/).
If you are connecting to a REMOTE Docker-OSX, e.g. a "Mac Mini" in a datacenter, then this may boost networking:
```bash
# enable for current session
sudo sysctl -w net.ipv4.ip_forward=1
# OR
# sudo tee /proc/sys/net/ipv4/ip_forward <<< 1
# enable permanently
sudo touch /etc/sysctl.conf
sudo tee -a /etc/sysctl.conf <<EOF
net.ipv4.ip_forward = 1
EOF
# OR edit manually
nano /etc/sysctl.conf || vi /etc/sysctl.conf || vim /etc/sysctl.conf
# now reboot # now reboot
``` ```
# Start the same container later (persistent disk) # Start the same container later (persistent disk)
@ -96,6 +126,8 @@ docker start abc123xyz567
# if you have many containers, you can try automate it with filters like this # if you have many containers, you can try automate it with filters like this
# docker ps --all --filter "ancestor=sickcodes/docker-osx" # docker ps --all --filter "ancestor=sickcodes/docker-osx"
# for locally tagged/built containers
# docker ps --all --filter "ancestor=docker-osx"
``` ```
@ -261,6 +293,8 @@ You can change the size and version using build arguments (see below).
This file builds on top of the work done by Dhiru Kholia and many others on the OSX-KVM project. This file builds on top of the work done by Dhiru Kholia and many others on the OSX-KVM project.
# Custom Build # Custom Build
```bash ```bash
docker build -t docker-osx:latest \ docker build -t docker-osx:latest \
@ -279,6 +313,30 @@ docker run \
``` ```
## What is `${DISPLAY:-:0.0}`?
`$DISPLAY` is the shell variable that refers to your X11 display server.
`${DISPLAY}` is the same, but allows you to join variables like this:
- e.g. `${DISPLAY}_${DISPLAY}` would print `:0.0_:0.0`
- e.g. `$DISPLAY_$DISPLAY` would print `:0.0`
...because `$DISPLAY_` is not `$DISPLAY`
`${variable:-fallback}` allows you to set a "fallback" variable to be substituted if `$variable` is not set.
You can also use `${variable:=fallback}` to set that variable (in your current terminal).
In Docker-OSX, we assume, `:0.0` is your default `$DISPLAY` variable.
You can see what yours is
```bash
echo $DISPLAY
```
Hence, `${DISPLAY:-:0.0}` will use whatever variable your X11 server has set for you, else `:0.0`
## Todo: ## Todo:
``` ```
- GPU Acceleration (Hackintosh? Passthru bus id of cards? AMD Vega? Nvidia-SMI?) - GPU Acceleration (Hackintosh? Passthru bus id of cards? AMD Vega? Nvidia-SMI?)