π³ Start with Docker
π Getting Started with Dockerβ
π Credentials
The default credentials to sign in are:
- Username: admin
- Password: admin
π§ Before You Begin
π Installing Dockerβ
π₯οΈ For Windows and Mac Users:β
- Download Docker Desktop from Docker's official website.
- Follow the installation instructions provided. After installation, open Docker Desktop to ensure it's running properly.
π§ For Linux Users (Ubuntu, Debian, CentOS, etc.):β
- Download Docker from Docker's official website.
- Follow the installation instructions provided.
βοΈ Installationβ
-
Locate the path of your Kube Config. The default location is in
~/.kube/config
. -
Run this Docker command with your Kube config path. You can also specify the context using the environment variables
KUBE_CONTEXT
:docker run --name velero-ui -v ~/.kube/config:/app/.kube/config -e KUBE_CONFIG_PATH=/app/.kube/config -d -p 3333:3000 otwld/velero-ui:latest
Where:
- ~/.kube/config:/app/.kube/config links the Kube Config as a volume from the host to the container.
- KUBE_CONFIG_PATH=/app/.kube/config is the path in the container to the Kube Config.
π¦ Installation with Docker Composeβ
π οΈ Coming Soon