Skip to content

A complete RTC to GIT migration environment within a Docker image

License

Notifications You must be signed in to change notification settings

rtcTo/rtc2git-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rtc2git docker image

MIT License Docker Pulls Docker Stars

rtc2git-docker

Builds a docker image containing the RTC SCM repository into a Git repository migration environment.

Build requirements

In order to build correctly you need to download the Linux 64 SCM Tools 6.0.2 and store it in the base directory as RTC-scmTools-Linux64-6.0.2.zip in oder for the docker build to be found correctly. Also you need to get the latest version of the rtc2gitcli plugin JAR file. This has to be placed into the plugins/ directory.

Building

To build the image when use the docker build argument as follows (requires docker 1.9+):

docker build --build-arg="VERSION=6.0.2" -t rtcto/rtc2git:6.0.2 .

In order to use an optional proxy to get the images, you can add an additional build commmand: --build-arg="http_proxy=http://someproxy.somedomain:1234"

Running the docker image

You can run the 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

And to restart the image do execute the following command:

docker start -i rtc2git

Migration process

A simple migration can be done now, after doing simple preparation steps:

  • Create a source RTC workspace refered by SOURCE_WORKSPACE

  • Create a target RTC workspace refered by TARGET_WORKSPACE

  • Create a optional migration.properties file in the target volume root

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
Note
If you running on a SELinux enabled system you may have to do some additional work

If your working directory used as volume mount point is not accessible within the docker image, you can mark it for SELinux with the following command under a Redhat system:

chcon -Rt svirt_sandbox_file_t /var/rtc2git

Enable remote debug the SCM tools

If you need to copy additional files and remote debug over port 8000 you should initially run docker with the following command:

docker run -v /var/rtc2git:/var/data -p 8000:8000 -it --name rtc2git rtcto/rtc2git:6.0.2

Also add the following lines to the /opt/jazz/scmtools/eclipse/scm.ini within the running docker instance (Just install your favorite editor using apt-get):

-Xdebug
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8000

Contribute

Contributions are always welcome.

License

This project is licensed under the MIT license

About

A complete RTC to GIT migration environment within a Docker image

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published