You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/README.md
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,29 @@
25
25
26
26
5) _Optional:_ run container setup script
27
27
```sh
28
-
make setup
28
+
make setup-default
29
+
30
+
# If you prefer to manually configure setup, you can just do make setup and go through the prompts
31
+
make setup-interactive
29
32
```
30
33
6) Acces the environment from any terminal window
31
34
```sh
32
35
docker exec -it mep3-devel bash
33
36
```
34
37
Graphical applications started inside this terminal will use your existing Xorg session to display.
35
38
39
+
40
+
## Code Server
41
+
If you prefer to use browser based VS Code, you can start it in the container and then access it locally through your browser at `localhost:31415`
42
+
43
+
```sh
44
+
# This will start the VS code server with your mep3 repo
45
+
make start-code-server
46
+
47
+
# To stop the VS code server
48
+
make stop-code-server
49
+
```
50
+
36
51
## Remote development environment (VNC)
37
52
38
53
@@ -48,3 +63,7 @@ and set `DISPLAY` environment variable on step 4 to its value (eg `:0`).
48
63
```sh
49
64
export DISPLAY=:0
50
65
```
66
+
67
+
## NVIDIA GPU
68
+
If you happen to have NVIDIA GPUs that you wish to use within these development environments, make sure
69
+
to have NVIDIA Container Toolkit installed on your system. More info, specific to your distribution [here](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html).
0 commit comments