diff --git a/.devcontainer/codespaces.yml b/.devcontainer/codespaces.yml index 9c133e8..01d2e6f 100644 --- a/.devcontainer/codespaces.yml +++ b/.devcontainer/codespaces.yml @@ -9,7 +9,6 @@ services: - NET_ADMIN ports: - 8080:80 - - 8006:8006 volumes: - ./zima:/storage restart: on-failure diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c666eb5..d2c4d3d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,12 +1,8 @@ { "name": "ZimaOS", "service": "zima", - "forwardPorts": [8006,8080], + "forwardPorts": [8080], "portsAttributes": { - "8006": { - "label": "Vnc", - "onAutoForward": "notify" - }, "8080": { "label": "Web", "onAutoForward": "notify" diff --git a/.github/readme.md b/.github/readme.md index 678213f..bd7b329 100644 --- a/.github/readme.md +++ b/.github/readme.md @@ -35,7 +35,6 @@ services: - NET_ADMIN ports: - 8080:80 - - 8006:8006 volumes: - ./zima:/storage restart: always @@ -45,7 +44,7 @@ services: ##### Via Docker CLI: ```bash -docker run -it --rm --name zima -p 8080:80 -p 8006:8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v "${PWD:-.}/zima:/storage" --stop-timeout 120 docker.io/dockurr/zima +docker run -it --rm --name zima -p 8080:80 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v "${PWD:-.}/zima:/storage" --stop-timeout 120 docker.io/dockurr/zima ``` ##### Via Kubernetes: @@ -70,11 +69,7 @@ kubectl apply -f https://raw.githubusercontent.com/dockur/zima/refs/heads/master Very simple! These are the steps: - - Start the container and connect to [port 8006](http://127.0.0.1:8006/) using your web browser. - - - Monitor the download and installation progress, and wait until ZimaOS setup has finished. - - - Connect to [port 8080](http://127.0.0.1:8080/) using your web browser. + - Start the container and connect to [port 8080](http://127.0.0.1:8080/) using your web browser. - Create an username and password, and login to ZimaOS to complete the setup. diff --git a/compose.yml b/compose.yml index bd4d1cf..0ad2f50 100644 --- a/compose.yml +++ b/compose.yml @@ -9,7 +9,6 @@ services: - NET_ADMIN ports: - 8080:80 - - 8006:8006 volumes: - ./zima:/storage restart: always