fix: Remove port 80 (#1124)
Some checks are pending
Build / Test (push) Waiting to run
Build / Build (push) Blocked by required conditions
Update / dockerHubDescription (push) Waiting to run

This commit is contained in:
Kroese 2025-03-18 05:19:44 +01:00 committed by GitHub
parent 156eaaa2da
commit c9abc7551a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -32,7 +32,7 @@ ARG VERSION_ARG="0.00"
RUN echo "$VERSION_ARG" > /run/version
VOLUME /storage
EXPOSE 80 3389
EXPOSE 3389 8006
ENV VERSION="11"
ENV RAM_SIZE="4G"

View File

@ -10,7 +10,7 @@ services:
cap_add:
- NET_ADMIN
ports:
- 8006:80
- 8006:8006
- 3389:3389/tcp
- 3389:3389/udp
volumes:

View File

@ -82,7 +82,7 @@ spec:
- name: http
port: 8006
protocol: TCP
targetPort: 80
targetPort: 8006
- name: rdp
port: 3389
protocol: TCP

View File

@ -41,7 +41,7 @@ services:
cap_add:
- NET_ADMIN
ports:
- 8006:80
- 8006:8006
- 3389:3389/tcp
- 3389:3389/udp
volumes:
@ -53,7 +53,7 @@ services:
Via Docker CLI:
```bash
docker run -it --rm --name windows -p 8006:80 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v ${PWD:-.}/windows:/storage --stop-timeout 120 dockurr/windows
docker run -it --rm --name windows -p 8006:8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v ${PWD:-.}/windows:/storage --stop-timeout 120 dockurr/windows
```
Via Kubernetes: