build: Update links (#15)

This commit is contained in:
Kroese 2024-06-04 11:57:27 +02:00 committed by GitHub
parent 4349e3ecc7
commit cda17a8b64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 32 additions and 32 deletions

View file

@ -27,7 +27,7 @@ body:
id: log
attributes:
label: Docker log
description: The logfile of the container (as shown by `docker logs osx`).
description: The logfile of the container (as shown by `docker logs macos`).
validations:
required: true
- type: textarea

View file

@ -29,7 +29,7 @@ body:
id: log
attributes:
label: Docker log
description: The logfile of the container (as shown by `docker logs osx`).
description: The logfile of the container (as shown by `docker logs macos`).
validations:
required: true
- type: textarea

View file

@ -6,14 +6,14 @@ body:
- type: checkboxes
attributes:
label: Is your question not already answered in the FAQ?
description: Please read the [FAQ](https://github.com/dockur/osx/blob/master/readme.md) carefully to avoid asking duplicate questions.
description: Please read the [FAQ](https://github.com/dockur/macos/blob/master/readme.md) carefully to avoid asking duplicate questions.
options:
- label: I made sure the question is not listed in the [FAQ](https://github.com/dockur/osx/blob/master/readme.md).
- label: I made sure the question is not listed in the [FAQ](https://github.com/dockur/macos/blob/master/readme.md).
required: true
- type: checkboxes
attributes:
label: Is this a general question and not a technical issue?
description: For questions related to issues you must use the [technical issue](https://github.com/dockur/osx/issues/new?assignees=&labels=&projects=&template=1-issue.yml) form instead. It contains all the right fields (system info, logfiles, etc.) we need in order to be able to help you.
description: For questions related to issues you must use the [technical issue](https://github.com/dockur/macos/issues/new?assignees=&labels=&projects=&template=1-issue.yml) form instead. It contains all the right fields (system info, logfiles, etc.) we need in order to be able to help you.
options:
- label: I am sure my question is not about a technical issue.
required: true

View file

@ -1,7 +1,7 @@
services:
osx:
image: dockurr/osx
container_name: osx
image: dockurr/macos
container_name: macos
environment:
VERSION: "ventura"
devices:

View file

@ -1,7 +1,7 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: osx-pvc
name: macos-pvc
spec:
accessModes:
- ReadWriteOnce
@ -12,14 +12,14 @@ spec:
apiVersion: v1
kind: Pod
metadata:
name: osx
name: macos
labels:
name: osx
name: macos
spec:
terminationGracePeriodSeconds: 120 # the Kubernetes default is 30 seconds and it may be not enough
containers:
- name: osx
image: dockurr/osx
- name: macos
image: dockurr/macos
ports:
- containerPort: 8006
protocol: TCP
@ -45,16 +45,16 @@ spec:
volumes:
- name: storage
persistentVolumeClaim:
claimName: osx-pvc
claimName: macos-pvc
---
apiVersion: v1
kind: Service
metadata:
name: osx
name: macos
spec:
type: NodePort
selector:
name: osx
name: macos
ports:
- name: tcp-8006
protocol: TCP

View file

@ -1,6 +1,6 @@
<h1 align="center">OSX<br />
<div align="center">
<a href="https://github.com/dockur/osx/"><img src="https://github.com/dockur/osx/raw/master/.github/logo.png" title="Logo" style="max-width:100%;" width="128" /></a>
<a href="https://github.com/dockur/macos/"><img src="https://github.com/dockur/macos/raw/master/.github/logo.png" title="Logo" style="max-width:100%;" width="128" /></a>
</div>
<div align="center">
@ -25,9 +25,9 @@ Via Docker Compose:
```yaml
services:
osx:
image: dockurr/osx
container_name: osx
macos:
image: dockurr/macos
container_name: macos
environment:
VERSION: "ventura"
devices:
@ -44,7 +44,7 @@ services:
Via Docker CLI:
```bash
docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-timeout 120 dockurr/osx
docker run -it --rm -p 8006:8006 --device=/dev/kvm --cap-add NET_ADMIN --stop-timeout 120 dockurr/macos
```
Via Kubernetes:
@ -102,10 +102,10 @@ kubectl apply -f kubernetes.yml
```yaml
volumes:
- /var/osx:/storage
- /var/macos:/storage
```
Replace the example path `/var/osx` with the desired storage folder.
Replace the example path `/var/macos` with the desired storage folder.
* ### How do I change the size of the disk?
@ -152,17 +152,17 @@ kubectl apply -f kubernetes.yml
Special thanks to [seitenca](https://github.com/seitenca) and [OSX-KVM](https://github.com/kholia/OSX-KVM), this project would not exist without their invaluable work.
## Stars
[![Stars](https://starchart.cc/dockur/osx.svg?variant=adaptive)](https://starchart.cc/dockur/osx)
[![Stars](https://starchart.cc/dockur/macos.svg?variant=adaptive)](https://starchart.cc/dockur/macos)
## Disclaimer
The product names, logos, brands, and other trademarks referred to within this project are the property of their respective trademark holders. This project is not affiliated, sponsored, or endorsed by Apple Inc.
[build_url]: https://github.com/dockur/osx/
[hub_url]: https://hub.docker.com/r/dockurr/osx/
[tag_url]: https://hub.docker.com/r/dockurr/osx/tags
[build_url]: https://github.com/dockur/macos/
[hub_url]: https://hub.docker.com/r/dockurr/macos/
[tag_url]: https://hub.docker.com/r/dockurr/macos/tags
[Build]: https://github.com/dockur/osx/actions/workflows/build.yml/badge.svg
[Size]: https://img.shields.io/docker/image-size/dockurr/osx/latest?color=066da5&label=size
[Pulls]: https://img.shields.io/docker/pulls/dockurr/osx.svg?style=flat&label=pulls&logo=docker
[Version]: https://img.shields.io/docker/v/dockurr/osx/latest?arch=amd64&sort=semver&color=066da5
[Build]: https://github.com/dockur/macos/actions/workflows/build.yml/badge.svg
[Size]: https://img.shields.io/docker/image-size/dockurr/macos/latest?color=066da5&label=size
[Pulls]: https://img.shields.io/docker/pulls/dockurr/macos.svg?style=flat&label=pulls&logo=docker
[Version]: https://img.shields.io/docker/v/dockurr/macos/latest?arch=amd64&sort=semver&color=066da5

View file

@ -4,7 +4,7 @@ set -Eeuo pipefail
: "${DISK_TYPE:="blk"}"
: "${USB:="qemu-xhci,id=xhci -device usb-kbd,bus=xhci.0"}"
APP="OSX"
APP="macOS"
VGA="vmware"
SUPPORT="https://github.com/dockur/osx/"
@ -12,7 +12,7 @@ cd /run
. reset.sh # Initialize system
. disk.sh # Initialize disks
. install.sh # Get the osx images
. install.sh # Get the OSX images
. display.sh # Initialize graphics
. network.sh # Initialize network
. boot.sh # Configure boot