Skip to content

Commit de76cca

Browse files
authored
docs: Port number (#215)
1 parent 69fb95c commit de76cca

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ADD --chmod=644 \
4545
ADD $REPO_KVM_OPENCORE/releases/download/$VERSION_KVM_OPENCORE/OpenCore-$VERSION_KVM_OPENCORE.iso.gz /opencore.iso.gz
4646

4747
VOLUME /storage
48-
EXPOSE 80 5900
48+
EXPOSE 5900 8006
4949

5050
ENV VERSION="13"
5151
ENV RAM_SIZE="4G"

compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
cap_add:
1111
- NET_ADMIN
1212
ports:
13-
- 8006:80
13+
- 8006:8006
1414
- 5900:5900/tcp
1515
- 5900:5900/udp
1616
volumes:

kubernetes.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ spec:
7676
- name: http
7777
port: 8006
7878
protocol: TCP
79-
targetPort: 80
79+
targetPort: 8006
8080
- name: vnc
8181
port: 5900
8282
protocol: TCP

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
cap_add:
3838
- NET_ADMIN
3939
ports:
40-
- 8006:80
40+
- 8006:8006
4141
- 5900:5900/tcp
4242
- 5900:5900/udp
4343
volumes:
@@ -49,7 +49,7 @@ services:
4949
Via Docker CLI:
5050
5151
```bash
52-
docker run -it --rm --name macos -p 8006:80 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v ${PWD:-.}/macos:/storage --stop-timeout 120 dockurr/macos
52+
docker run -it --rm --name macos -p 8006:8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v ${PWD:-.}/macos:/storage --stop-timeout 120 dockurr/macos
5353
```
5454

5555
Via Kubernetes:

0 commit comments

Comments
 (0)