Docker image containing the migration environment to convert a RTC SCM to Git
1.0K
You can run the RTC 6.0.2 docker image with the following command if your local data volume should point to /var/rtc2git as follows:
docker run -v /var/rtc2git:/var/data -it --name rtc2git rtcto/rtc2git:6.0.2
If you want to put your migration data into a separate docker volume you can create a new volume using:
docker volume create rtc2git-data
And then start the migration docker image using:
docker run -v rtc2git-data:/var/data -it --name rtc2git rtcto/rtc2git:6.0.2
And to restart the image do execute the following command:
docker start -i rtc2git
A simple migration can be done now, after doing simple preparation steps:
For more information see the plugin documentation
Load initial TARGET_WORKSPACE content:
scm load -r <scm-url> -u <user> -P <password> TARGET_WORKSPACE
Start the migration:
scm migrate-to-git -r <scm-url> -u <user> -P <password> -m /var/data/migration.properties SOURCE_WORKSPACE TARGET_WORKSPACE
Content type
Image
Digest
Size
307.9 MB
Last updated
about 9 years ago
docker pull rtcto/rtc2git:5.0.2