mirror of
https://github.com/sickcodes/Docker-OSX.git
synced 2024-11-24 19:20:32 +08:00
Compare commits
9 Commits
63636c6641
...
677f0fd1bd
Author | SHA1 | Date | |
---|---|---|---|
|
677f0fd1bd | ||
|
730d6f294a | ||
|
93c2119ebc | ||
|
fb8aa4b248 | ||
|
b5a70782cc | ||
|
61b21421f6 | ||
|
342c09eb2a | ||
|
26b6e61b3b | ||
|
087fdd54c9 |
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"
|
@ -352,7 +352,7 @@ SEE commands in [https://github.com/sickcodes/osx-optimizer](https://github.com/
|
|||||||
|
|
||||||
- Skip the GUI login screen (at your own risk!)
|
- Skip the GUI login screen (at your own risk!)
|
||||||
- Disable spotlight indexing on macOS to heavily speed up Virtual Instances.
|
- Disable spotlight indexing on macOS to heavily speed up Virtual Instances.
|
||||||
- Disable heavy login screen wallpaper
|
- Disable heavy login screen wallpaper.
|
||||||
- Disable updates (at your own risk!)
|
- Disable updates (at your own risk!)
|
||||||
|
|
||||||
## Increase disk space by moving /var/lib/docker to external drive, block storage, NFS, or any other location conceivable.
|
## Increase disk space by moving /var/lib/docker to external drive, block storage, NFS, or any other location conceivable.
|
||||||
@ -1119,9 +1119,9 @@ egrep -c '(svm|vmx)' /proc/cpuinfo
|
|||||||
- Zero out the empty space on the disk with `dd if=/dev/zero of=./empty && rm -f empty`
|
- Zero out the empty space on the disk with `dd if=/dev/zero of=./empty && rm -f empty`
|
||||||
- Shut down the VM and copy out the qcow image with `docker cp stoppedcontainer:/home/arch/OSX-KVM/mac_hdd_ng.img.`
|
- Shut down the VM and copy out the qcow image with `docker cp stoppedcontainer:/home/arch/OSX-KVM/mac_hdd_ng.img.`
|
||||||
- Run `qemu-img check -r all mac_hdd_ng.img` to fix any errors.
|
- Run `qemu-img check -r all mac_hdd_ng.img` to fix any errors.
|
||||||
- Run `qemu-img convert -O qcow2 mac_hdd_ng.img deduped.img` and check for errors again
|
- Run `qemu-img convert -O qcow2 mac_hdd_ng.img deduped.img` and check for errors again.
|
||||||
- **OPTIONAL:** Run `qemu-img convert -c -O qcow2 deduped.img compressed.img` to further compress the image. This may reduce the runtime speed though, but it should reduce the size by roughly 25%.
|
- **OPTIONAL:** Run `qemu-img convert -c -O qcow2 deduped.img compressed.img` to further compress the image. This may reduce the runtime speed though, but it should reduce the size by roughly 25%.
|
||||||
- Check for errors again, and build a fresh docker image. E.g. with this Dockerfile
|
- Check for errors again, and build a fresh docker image. E.g. with this Dockerfile.
|
||||||
|
|
||||||
```
|
```
|
||||||
FROM sickcodes/docker-osx
|
FROM sickcodes/docker-osx
|
||||||
|
Loading…
Reference in New Issue
Block a user