Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion users/anandubajith/docker-based-setup-silc.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```

### 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.