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
- Host: GitHub
- URL: https://github.com/chi-teck/selenium-server-standalone-firefox
- Owner: Chi-teck
- Created: 2017-05-06T07:03:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-25T03:09:16.000Z (about 8 years ago)
- Last Synced: 2025-05-21T11:13:45.364Z (5 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```