You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,20 @@ You can also run the Data Migration Tool as a Docker container, which is useful
34
34
35
35
### Using Pre-built Docker Image
36
36
37
-
The easiest way to use the container is to pull the pre-built image from GitHub Container Registry:
37
+
The easiest way to use the container is to pull the pre-built image from Microsoft Container Registry. You can pull a specific version starting with version `3.0.0` and greater or use the `latest` tag to pull the latest version of the container from the registry.
docker run -v $(pwd)/config:/config -v $(pwd)/data:/data mcr.microsoft.com/azurecosmosdb/linux/azure-cosmos-dmt:3.0.0 run --settings /config/migrationsettings.json
docker run -v $(pwd)/config:/config -v $(pwd)/data:/data ghcr.io/azurecosmosdb/data-migration-desktop-tool:latest run --settings /config/migrationsettings.json
docker run -v $(pwd)/config:/config -v $(pwd)/data:/data mcr.microsoft.com/azurecosmosdb/linux/azure-cosmos-dmt:latest run --settings /config/migrationsettings.json
42
51
```
43
52
44
53
### Building the Docker Image Locally
@@ -58,6 +67,7 @@ docker run -v $(pwd)/config:/config -v $(pwd)/data:/data data-migration-tool run
58
67
```
59
68
60
69
Where:
70
+
61
71
-`/config` contains your configuration files including `migrationsettings.json`
0 commit comments