diff --git a/.github/ISSUE_TEMPLATE/1-issue.yml b/.github/ISSUE_TEMPLATE/1-issue.yml index b28af28..86cda9f 100644 --- a/.github/ISSUE_TEMPLATE/1-issue.yml +++ b/.github/ISSUE_TEMPLATE/1-issue.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/3-bug.yml b/.github/ISSUE_TEMPLATE/3-bug.yml index c2bd39b..ce39b97 100644 --- a/.github/ISSUE_TEMPLATE/3-bug.yml +++ b/.github/ISSUE_TEMPLATE/3-bug.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/4-question.yml b/.github/ISSUE_TEMPLATE/4-question.yml index d92b3b5..7bc7954 100644 --- a/.github/ISSUE_TEMPLATE/4-question.yml +++ b/.github/ISSUE_TEMPLATE/4-question.yml @@ -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 diff --git a/compose.yml b/compose.yml index c53524f..dcac88c 100644 --- a/compose.yml +++ b/compose.yml @@ -1,7 +1,7 @@ services: osx: - image: dockurr/osx - container_name: osx + image: dockurr/macos + container_name: macos environment: VERSION: "ventura" devices: diff --git a/kubernetes.yml b/kubernetes.yml index 9c84009..b10652e 100644 --- a/kubernetes.yml +++ b/kubernetes.yml @@ -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 diff --git a/readme.md b/readme.md index be3968a..8d31116 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@