Skip to content

Commit 239dcb5

Browse files
authored
Merge branch 'main' into copilot/update-workflow-run-name
2 parents 28c729e + 3c858cf commit 239dcb5

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,20 @@ You can also run the Data Migration Tool as a Docker container, which is useful
3434

3535
### Using Pre-built Docker Image
3636

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.
38+
39+
**Example using a specific version:**
40+
41+
```bash
42+
docker pull mcr.microsoft.com/azurecosmosdb/linux/azure-cosmos-dmt:3.0.0
43+
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
44+
```
45+
46+
**Example using latest version:**
3847

3948
```bash
40-
docker pull ghcr.io/azurecosmosdb/data-migration-desktop-tool:latest
41-
docker run -v $(pwd)/config:/config -v $(pwd)/data:/data ghcr.io/azurecosmosdb/data-migration-desktop-tool:latest run --settings /config/migrationsettings.json
49+
docker pull mcr.microsoft.com/azurecosmosdb/linux/azure-cosmos-dmt:latest
50+
docker run -v $(pwd)/config:/config -v $(pwd)/data:/data mcr.microsoft.com/azurecosmosdb/linux/azure-cosmos-dmt:latest run --settings /config/migrationsettings.json
4251
```
4352

4453
### Building the Docker Image Locally
@@ -58,6 +67,7 @@ docker run -v $(pwd)/config:/config -v $(pwd)/data:/data data-migration-tool run
5867
```
5968

6069
Where:
70+
6171
- `/config` contains your configuration files including `migrationsettings.json`
6272
- `/data` is the directory for your data files
6373

0 commit comments

Comments
 (0)