diff --git a/users/anandubajith/docker-based-setup-silc.md b/users/anandubajith/docker-based-setup-silc.md index ca661a4..9078596 100644 --- a/users/anandubajith/docker-based-setup-silc.md +++ b/users/anandubajith/docker-based-setup-silc.md @@ -43,10 +43,21 @@ Start an instance of Container and map the local folder into `files` directory i docker run -v $PWD:/xsm_expl/files -d --name silc -i silc:ubuntu20.04 # on windows docker run -v %cd%:/xsm_expl/files -d --name silc -i silc:ubuntu20.04 + # on powershell + docker run -v ${PWD}:/xsm_expl/files -d --name silc -i silc:ubuntu20.04 ``` ### Connecting to the container Connect to the container +``` docker start silc docker exec -it silc /bin/bash -The usage instructions for the XSM simulator can be found here. \ No newline at end of file +``` + +### Connecting to the container using VS Code +- Install both `ms-vscode-remote.remote-wsl` and `ms-azuretools.vscode-docker` extensions +- Go to the Docker Tab +- Start the silc container +- Right click on it and click `Attach Visual Studio Code` + +The usage instructions for the XSM simulator can be found here.