Skip to main content
Version: 9

Migrate User Workspace

Migrate from 8.x to 9.x

In version 9.0.0, we renamed the environment variables used by MoveIt Pro to better align with product naming. These included environment variables which were used in user workspaces such as:

  • STUDIO_USERNAMEMOVEIT_USERNAME
  • STUDIO_USER_UIDMOVEIT_USER_UID
  • STUDIO_USER_GIDMOVEIT_USER_GID
  • STUDIO_DOCKER_TAGMOVEIT_DOCKER_TAG
  • STUDIO_LICENSE_KEYMOVEIT_LICENSE_KEY

If you are using Linux, you can update your entire workspace with the following bash command:

cd <your_moveit_pro_workspace>
sed -i 's/MOVEIT_STUDIO_BASE_IMAGE/MOVEIT_PRO_BASE_IMAGE/g' Dockerfile
for file in $(grep -r 'STUDIO_' -l); do
sed -i 's/STUDIO_/MOVEIT_/g' $file;
done