# Running ReXcloud Docker Image on a local PC

* Install docker: <https://docs.docker.com/desktop/install/windows-install/>
* Download the ReXcloud docker image:

  <https://downloads.influxtechnology.com/DockerImages/rexcloud.tar>
* Load the docker image with the following command in Windows power shell or cmd prompt (from the image folder):

```powershell
docker load --input rexcloud.tar
```

* Run the docker image with the following command in Windows power shell or cmd prompt (from the image folder):

{% code overflow="wrap" fullWidth="false" %}

```powershell
docker run -d -p 1337:1337 -p 3000:3000 -e "REGION=eu-central-1" -e "ACCESS_KEY=<YOUR_ACCESS_KEY>" -e "SECRET_KEY=<YOUR_SECRET_KEY>" --name rexcloud rexcloud
```

{% endcode %}

* Access Fleet management by typing <http://localhost:1337/> in the browser.

{% hint style="info" %}

#### Note:

* Docker image V1.0 contains Node.js, Influx Fleet and Grafana.
  {% endhint %}
