Skip to content

Commit c9a1dbe

Browse files
authored
Document VNC password in Standalone*Debug/README.md (#1021)
1 parent 2365193 commit c9a1dbe

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

StandaloneChromeDebug/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ $ ./bin/vncview 127.0.0.1:49338
2828

2929
If you are running Boot2Docker on Mac then you already have a [VNC client](http://www.davidtheexpert.com/post.php?id=5) built-in. You can connect by entering `vnc://<boot2docker-ip>:49160` in Safari or [Alfred](http://www.alfredapp.com/)
3030

31+
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
32+
33+
``` dockerfile
34+
FROM selenium/node-chrome-debug-debug:3.141.59-zirconium
35+
36+
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
37+
```
38+
3139
## What is Selenium?
3240
_Selenium automates browsers._ That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
3341

StandaloneDebug/README.template.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ $ ./bin/vncview 127.0.0.1:49338
2828

2929
If you are running Boot2Docker on Mac then you already have a [VNC client](http://www.davidtheexpert.com/post.php?id=5) built-in. You can connect by entering `vnc://<boot2docker-ip>:49160` in Safari or [Alfred](http://www.alfredapp.com/)
3030

31+
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
32+
33+
``` dockerfile
34+
FROM selenium/##BASE##-debug:3.141.59-zirconium
35+
36+
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
37+
```
38+
3139
## What is Selenium?
3240
_Selenium automates browsers._ That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
3341

StandaloneFirefoxDebug/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ $ ./bin/vncview 127.0.0.1:49338
2828

2929
If you are running Boot2Docker on Mac then you already have a [VNC client](http://www.davidtheexpert.com/post.php?id=5) built-in. You can connect by entering `vnc://<boot2docker-ip>:49160` in Safari or [Alfred](http://www.alfredapp.com/)
3030

31+
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
32+
33+
``` dockerfile
34+
FROM selenium/node-firefox-debug-debug:3.141.59-zirconium
35+
36+
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
37+
```
38+
3139
## What is Selenium?
3240
_Selenium automates browsers._ That's it! What you do with that power is entirely up to you. Primarily, it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should!) also be automated as well.
3341

0 commit comments

Comments
 (0)