Postingan

Menampilkan postingan dari Mei, 2021

Docker Image

  Building Docker Image. Starting Container. Launch the following command in the terminal to build your Docker image. docker build -t slotix/dbconvert-studio . The next command, docker run, starts a container from the newly created DBConvert Studio image. docker run –name studio -it –rm -v “c:\dbconvert-docker\studio\workSettings:C:\PROGRAM FILES\DBCONVERT\DBConvert Studio x64\workSettings” slotix/dbconvert-studio:latest DBConvert.exe /Session:”my2my_copy” Containers are immutable by design. This means that the container will not be changed during its life cycle: no updates, no patches, no configuration changes. When starting DBConvert studio from the command line, you need to pass in a ready-made session file that includes the configured database connections involved in the migration and some other parameters. -v flag mounts c:\dbconvert-docker\studio\workSettings directory on the host machine into the folder C:\PROGRAM FILES\DBCONVERT\DBConvert Studio x64\workSettings inside the runn