File tree 1 file changed +27
-1
lines changed
1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
JetBrains Gateway SSH was made to provide a clean SSH server for JetBrains Gateway.
4
4
5
- ## Setup
5
+ ## Getting started
6
+
7
+ JetBrains Gateway SSH is pushed to Docker Hub. You can use this docker-compose.yml example to quickly start a container:
8
+
9
+ ```
10
+ version: "3.1"
11
+ services:
12
+ jetbrains-gateway-ssh:
13
+ image: vollborn/jetbrains-gateway-ssh
14
+ environment:
15
+ SSH_USERNAME: "${SSH_USERNAME:-jetbrains}"
16
+ SSH_PASSWORD: "${SSH_PASSWORD:-jetbrains}"
17
+ volumes:
18
+ - "./home:/opt/home"
19
+ ports:
20
+ - "${SSH_PORT:-22}:22"
21
+ ```
22
+
23
+ You should change the default password and username by creating an .env file with your own credentials:
24
+
25
+ ```
26
+ SSH_PORT=22
27
+ SSH_USERNAME=jetbrains
28
+ SSH_PASSWORD=myownpassword
29
+ ```
30
+
31
+ ## Development
6
32
7
33
1 . Clone the repository
8
34
``` shell
You can’t perform that action at this time.
0 commit comments