Skip to content

Commit

Permalink
Document VNC password in Standalone*Debug/README.md (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
cben committed Mar 26, 2020
1 parent 2365193 commit c9a1dbe
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions StandaloneChromeDebug/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ $ ./bin/vncview 127.0.0.1:49338

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/)

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:

``` dockerfile
FROM selenium/node-chrome-debug-debug:3.141.59-zirconium

RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
```

## What is Selenium?
_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.

Expand Down
8 changes: 8 additions & 0 deletions StandaloneDebug/README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ $ ./bin/vncview 127.0.0.1:49338

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/)

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:

``` dockerfile
FROM selenium/##BASE##-debug:3.141.59-zirconium

RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
```

## What is Selenium?
_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.

Expand Down
8 changes: 8 additions & 0 deletions StandaloneFirefoxDebug/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ $ ./bin/vncview 127.0.0.1:49338

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/)

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:

``` dockerfile
FROM selenium/node-firefox-debug-debug:3.141.59-zirconium

RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
```

## What is Selenium?
_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.

Expand Down

0 comments on commit c9a1dbe

Please sign in to comment.