Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .devcontainer/codespaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ services:
- NET_ADMIN
ports:
- 8080:80
- 8006:8006
volumes:
- ./zima:/storage
restart: on-failure
Expand Down
6 changes: 1 addition & 5 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
{
"name": "ZimaOS",
"service": "zima",
"forwardPorts": [8006,8080],
"forwardPorts": [8080],
"portsAttributes": {
"8006": {
"label": "Vnc",
"onAutoForward": "notify"
},
"8080": {
"label": "Web",
"onAutoForward": "notify"
Expand Down
9 changes: 2 additions & 7 deletions .github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ services:
- NET_ADMIN
ports:
- 8080:80
- 8006:8006
volumes:
- ./zima:/storage
restart: always
Expand All @@ -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:
Expand All @@ -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.

Expand Down
1 change: 0 additions & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ services:
- NET_ADMIN
ports:
- 8080:80
- 8006:8006
volumes:
- ./zima:/storage
restart: always
Expand Down
Loading