Merge pull request #613 from Ygnys/fix-typos

fixing typos in Readme
This commit is contained in:
sickcodes 2023-01-23 18:09:40 +00:00 committed by GitHub
commit 51f1c1ce14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -378,7 +378,7 @@ Pick one of these while **building**, irrelevant when using docker pull:
## Technical details ## Technical details
There currently multiple images, each with different use cases (explained [below](#container-images)): There are currently multiple images, each with different use cases (explained [below](#container-images)):
- High Sierra - High Sierra
- Mojave - Mojave
@ -490,7 +490,7 @@ In case you're interested, contact [@sickcodes on Twitter](https://twitter.com/s
## License/Contributing ## License/Contributing
Docker-OSX is licensed under the [GPL v3+](LICENSE). Contributions are welcomed and immensely appreciated. You are in-fact permitted to use Docker-OSX as a tool to create proprietary software. Docker-OSX is licensed under the [GPL v3+](LICENSE). Contributions are welcomed and immensely appreciated. You are in fact permitted to use Docker-OSX as a tool to create proprietary software.
### Other cool Docker/QEMU based projects ### Other cool Docker/QEMU based projects
- [Run Android in a Docker Container with Dock Droid](https://github.com/sickcodes/dock-droid) - [Run Android in a Docker Container with Dock Droid](https://github.com/sickcodes/dock-droid)
@ -510,7 +510,7 @@ Product names, logos, brands and other trademarks referred to within this projec
### Already set up or just looking to make a container quickly? Check out our [quick start](#quick-start-docker-osx) or see a bunch more use cases under our [container creation examples](#container-creation-examples) section. ### Already set up or just looking to make a container quickly? Check out our [quick start](#quick-start-docker-osx) or see a bunch more use cases under our [container creation examples](#container-creation-examples) section.
There are several different Docker-OSX images available which are suitable for different purposes. There are several different Docker-OSX images available that are suitable for different purposes.
- `sickcodes/docker-osx:latest` - [I just want to try it out.](#quick-start-docker-osx) - `sickcodes/docker-osx:latest` - [I just want to try it out.](#quick-start-docker-osx)
- `sickcodes/docker-osx:latest` - [I want to use Docker-OSX to develop/secure apps in Xcode (sign into Xcode, Transporter)](#quick-start-your-own-image-naked-container-image) - `sickcodes/docker-osx:latest` - [I want to use Docker-OSX to develop/secure apps in Xcode (sign into Xcode, Transporter)](#quick-start-your-own-image-naked-container-image)
@ -685,7 +685,7 @@ Examples:
Note, unlike memory, CPU usage is shared. so you can allocate all of your CPU's to the container. Note, unlike memory, CPU usage is shared. so you can allocate all of your CPU's to the container.
### Confirm your user is part of the the Docker group, KVM group, libvirt group ### Confirm your user is part of the Docker group, KVM group, libvirt group
#### Add yourself to the Docker group #### Add yourself to the Docker group
@ -1037,7 +1037,7 @@ IP_ADDRESS=172.17.0.1
### Fedora: enable internet connectivity with a bridged network ### Fedora: enable internet connectivity with a bridged network
Fedora's default firewall settings may prevent Docker's network interface from reaching the internet. In order to reoslve this, you will need to whitelist the interface in your firewall: Fedora's default firewall settings may prevent Docker's network interface from reaching the internet. In order to resolve this, you will need to whitelist the interface in your firewall:
```bash ```bash
# Set the docker0 bridge to the trusted zone # Set the docker0 bridge to the trusted zone
@ -1399,7 +1399,7 @@ docker run -it \
sickcodes/docker-osx:latest sickcodes/docker-osx:latest
``` ```
Here's a few other resolutions! If you resolution is invalid, it will default to 800x600. Here's a few other resolutions! If your resolution is invalid, it will default to 800x600.
``` ```
-e WIDTH=800 \ -e WIDTH=800 \
@ -1688,7 +1688,7 @@ docker run -it \
sickcodes/docker-osx:naked sickcodes/docker-osx:naked
``` ```
### Building a headless container which allows insecure VNC on localhost (!for local use only!) ### Building a headless container that allows insecure VNC on localhost (!for local use only!)
**Must change -it to -i to be able to interact with the QEMU console** **Must change -it to -i to be able to interact with the QEMU console**
@ -1733,7 +1733,7 @@ You also need the container IP: `docker inspect <containerid> | jq -r '.[0].Netw
Or `ip n` will usually show the container IP first. Or `ip n` will usually show the container IP first.
Now VNC connect using the Docker container IP, for example `172.17.0.2:5999` Now VNC connects using the Docker container IP, for example `172.17.0.2:5999`
Remote VNC over SSH: `ssh -N root@1.1.1.1 -L 5999:172.17.0.2:5999`, where `1.1.1.1` is your remote server IP and `172.17.0.2` is your LAN container IP. Remote VNC over SSH: `ssh -N root@1.1.1.1 -L 5999:172.17.0.2:5999`, where `1.1.1.1` is your remote server IP and `172.17.0.2` is your LAN container IP.