@@ -18,7 +18,7 @@ workspace](../assets/workspaces/multi-intellij-icons-smaller.png)
18
18
1 . Build a custom image that installs the primary JetBrains IDE, copies the
19
19
configure script, .profile script, and the config.yaml file into the image.
20
20
21
- ```
21
+ ``` Dockerfile
22
22
FROM codercom/enterprise-java:ubuntu
23
23
24
24
USER root
@@ -44,13 +44,13 @@ workspace](../assets/workspaces/multi-intellij-icons-smaller.png)
44
44
45
45
# Set back to coder user
46
46
USER coder
47
- ```
47
+ ```
48
48
49
49
This is the .profile script to add the Projector CLI to the workspace's
50
50
path. In this example, .profile is located in a coder directory within the
51
51
directory that has the image Dockerfile.
52
52
53
- ```
53
+ ```console
54
54
export PATH=$PATH:$HOME/.local/bin
55
55
```
56
56
@@ -61,7 +61,7 @@ workspace](../assets/workspaces/multi-intellij-icons-smaller.png)
61
61
62
62
> Note that each additional IDE needs a different port number
63
63
64
- ```
64
+ ```console
65
65
# install projector into /home/coder/ pvc
66
66
pip3 install projector-installer --user
67
67
@@ -98,7 +98,7 @@ workspace](../assets/workspaces/multi-intellij-icons-smaller.png)
98
98
> Note that each workspace application name must be unique so that Projector
99
99
> knows which config directory to point to
100
100
101
- ```
101
+ ```yaml
102
102
# /coder/apps/config.yaml
103
103
apps:
104
104
# Name of application in launcher. Name may consist of alphanumeric
@@ -204,4 +204,4 @@ workspace](../assets/workspaces/multi-intellij-icons-smaller.png)
204
204
> Here are links to Projector CLI documentation for
205
205
> [installation](https://github.com/JetBrains/projector-installer#Installation)
206
206
> and [CLI
207
- > commands] ( https://github.com/JetBrains/projector-installer/blob/master/COMMANDS.md ) .
207
+ > commands](https://github.com/JetBrains/projector-installer/blob/master/COMMANDS.md)
0 commit comments