Skip to main content
Version: 2.2.1

Shared storage unit

If you want to configure a shared drive, follow these steps:

Remember that the folder must be shared on the network.
  1. Run this command to set the credentials that you will use to access the shared folder. Remember to enter the environment domain.
$creds = Get-Credential
  1. Here, this command will create the shared folder in a new drive of your choosing, with "\sharedfolder\local" being the folder you will share, and "G:", the new drive where you will mount it.
caution

Note: You can use a different letter, for example F: or D: or H:, etc. Just pay attention to where you will mount the shared folder and to the drive.

New-SmbGlobalMapping -RemotePath \\sharedfolder\local -Credential $creds -LocalPath G:
  1. Make sure SoftExpert Suite is stopped to take the following steps.
C:\sesuite\sesuite.ps1 stop
  1. If the new controlled directory is not displayed in the network directories, the system will have to be restarted for them to appear.

  2. Edit the docker-compose.yml file, adding the newly created disk to the "C:\sesuite\controlled" folder in "volumes:".

caution

Note: Remember to use ':\' in between letters, as shown in the example.