From 2037a1783aed591fce9083502a46fc1a3f4ea710 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 17 Mar 2025 16:45:04 +0100 Subject: [PATCH] feat: Switch to port 80 (#281) --- Dockerfile | 3 +-- compose.yml | 2 +- kubernetes.yml | 2 +- readme.md | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index fd0ec7b..03d63c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,6 @@ RUN set -eu && \ apt-get --no-install-recommends -y install \ bc \ jq \ - curl \ 7zip \ wsdd \ samba \ @@ -32,7 +31,7 @@ COPY --chmod=755 ./assets /run/assets ADD --chmod=664 https://github.com/qemus/virtiso-arm/releases/download/v0.1.266-1/virtio-win-0.1.266.tar.xz /drivers.txz VOLUME /storage -EXPOSE 8006 3389 +EXPOSE 80 3389 ENV VERSION="11" ENV RAM_SIZE="4G" diff --git a/compose.yml b/compose.yml index e5b6257..eda192d 100644 --- a/compose.yml +++ b/compose.yml @@ -10,7 +10,7 @@ services: cap_add: - NET_ADMIN ports: - - 8006:8006 + - 8006:80 - 3389:3389/tcp - 3389:3389/udp volumes: diff --git a/kubernetes.yml b/kubernetes.yml index fa8eef0..5ed913f 100644 --- a/kubernetes.yml +++ b/kubernetes.yml @@ -82,7 +82,7 @@ spec: - name: http port: 8006 protocol: TCP - targetPort: 8006 + targetPort: 80 - name: rdp port: 3389 protocol: TCP diff --git a/readme.md b/readme.md index f0ef040..77f33ac 100644 --- a/readme.md +++ b/readme.md @@ -41,7 +41,7 @@ services: cap_add: - NET_ADMIN ports: - - 8006:8006 + - 8006:80 - 3389:3389/tcp - 3389:3389/udp volumes: @@ -53,7 +53,7 @@ services: Via Docker CLI: ```bash -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 +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 ``` Via Kubernetes: