An open API service indexing awesome lists of open source software.

https://github.com/chi-teck/selenium-server-standalone-firefox


https://github.com/chi-teck/selenium-server-standalone-firefox

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Standalone Selenium 2 server with Firefox

## Usage

### One time container
```
docker run -p 4444:4444 -it --rm attr/selenium-server-standalone-firefox
```

### Persistent named container
```
docker run -p 4444:4444 -dit --name=selenium attr/selenium-server-standalone-firefox
```

### Container with access to local network sites.
```
docker run -dit \
-p 4444:4444 \
--add-host test.example.local:192.168.0.5 \
--net my_docker_net \
--ip 192.168.0.10 \
--name selenium \
attr/selenium-server-standalone-firefox
```