mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2024-12-27 00:11:32 -06:00
Compare commits
8 Commits
fd935a8448
...
560a25a904
Author | SHA1 | Date | |
---|---|---|---|
|
560a25a904 | ||
|
730d6f294a | ||
|
93c2119ebc | ||
|
fb8aa4b248 | ||
|
b5a70782cc | ||
|
61b21421f6 | ||
|
342c09eb2a | ||
|
18310cca37 |
52
.github/workflows/docker-build.yml
vendored
Normal file
52
.github/workflows/docker-build.yml
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
name: Push Docker Image to Docker Hub
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
push_to_docker_hub:
|
||||
name: Push Docker Image to Docker Hub
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
id: checkout_code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Login to Docker Hub
|
||||
id: login_docker_hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_HUB_USER_NAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
||||
|
||||
- name: Echo Docker Hub Username
|
||||
run: echo ${{ secrets.DOCKER_HUB_USER_NAME }}
|
||||
|
||||
- name: Echo GitHub SHA
|
||||
run: echo $GITHUB_SHA
|
||||
|
||||
- name: Build Docker image
|
||||
id: build_image
|
||||
run: |
|
||||
docker build "$GITHUB_WORKSPACE" -t sickcodes/docker-osx:master --label dockerfile-path="Dockerfile"
|
||||
|
||||
- name: Label Master Docker Image as Latest
|
||||
id: label_image
|
||||
run: |
|
||||
docker tag sickcodes/docker-osx:master sickcodes/docker-osx:latest
|
||||
|
||||
- name: Push Docker image master
|
||||
id: push_master
|
||||
run: docker push sickcodes/docker-osx:master
|
||||
|
||||
- name: Push Docker image latest
|
||||
id: push_latest
|
||||
run: docker push sickcodes/docker-osx:latest
|
||||
|
||||
- name: Logout from Docker Hub
|
||||
run: docker logout
|
||||
|
||||
- name: End
|
||||
run: echo "Docker image pushed to Docker Hub successfully"
|
21
README.md
21
README.md
@ -618,6 +618,27 @@ The result should be like this:
|
||||
nestedVirtualization=true
|
||||
```
|
||||
|
||||
Then you can choose to directly run Docker-OSX in powershell or run it in WSL distros.
|
||||
|
||||
#### Run in powershell
|
||||
|
||||
Download and install [Docker for Windows](https://docs.docker.com/desktop/windows/install/) if it is not already installed.
|
||||
|
||||
Then go into Settings and check a box:
|
||||
|
||||
```
|
||||
General -> "Use the WSL2 based engine";
|
||||
```
|
||||
|
||||
Next, run the following command in powershell(we run Ventura here as an example):
|
||||
|
||||
```powershell
|
||||
docker run --device /dev/kvm -v /run/desktop/mnt/host/wslg/.X11-unix:/tmp/.X11-unix -v /run/desktop/mnt/host/wslg:/mnt/wslg -e DISPLAY=:0 sickcodes/docker-osx:ventura
|
||||
```
|
||||
|
||||
It points Docker-OSX to wslg in `docker-desktop` (a special distro created by Docker Desktop) and run Docker-OSX.
|
||||
|
||||
#### Run in distros
|
||||
Go into your WSL distro (Run `wsl` in powershell) and check if KVM is enabled by using the `kvm-ok` command. The output should look like this:
|
||||
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user