Skip to content
Draft
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
27 changes: 26 additions & 1 deletion docs/usage/platform/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,29 @@ The CLI fetches credentials from the API and runs `docker login` per unique regi

This has not been developed for, nor tested on Windows.

You can try to use WSL2 + Docker Desktop. The CLI checks `docker` and `docker compose` availability regardless of OS.
You can try to use WSL2 + Docker Desktop. The CLI checks `docker` and `docker compose` availability regardless of OS.

#### How do I migrate from an older platform install method?

If you installed using the old `install.sh` script, you can migrate your data by running the following commands to:

```bash
#!/bin/bash

set -e



echo "Migrating data from platform to dreadnode..."

echo "Migrating Postgres..."
docker run --rm -v platform_postgres-data:/from -v dreadnode-postgres-data:/to alpine sh -c 'cd /from && cp -a . /to'

echo "Migrating Clickhouse..."
docker run --rm -v platform_clickhouse-data:/from -v dreadnode-clickhouse-data:/to alpine sh -c 'cd /from && cp -a . /to'

echo "Migrating Minio..."
docker run --rm -v platform_minio-data:/from -v dreadnode-minio-data:/to alpine sh -c 'cd /from && cp -a . /to'

echo "Migration complete."
```
Loading