# 3.2 Docker Configuration

{% hint style="info" %}
Docker for v0.1.1 will be coming soon
{% endhint %}

We have a pre-built docker image hosted on dockerhub. Pull the image with

```sh
docker pull spicenet/node:v0.1.0
```

The container needs volume on the host system to work uninterrupted, so the file structure should look like this&#x20;

* App
  * configs
    * celestia

`celestia_rollup_config.toml` and `test-data` can be found in the validator repo ([here](https://github.com/pepper-research/testnet-canary)) at the root.

Run the docker container with

```sh
docker run -it -v $(pwd):/app spicenet/node:v0.1.0 --da-layer celestia --rollup-config-path ./celestia_rollup_config.toml --genesis-config-dir ./test-data/genesis/celestia
```
