Skip to content

Instantly share code, notes, and snippets.

@palanisamym14
Created August 2, 2022 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save palanisamym14/a34fc05904a1e55db8dbe382d8eb6cb5 to your computer and use it in GitHub Desktop.
Save palanisamym14/a34fc05904a1e55db8dbe382d8eb6cb5 to your computer and use it in GitHub Desktop.
{
"firefox": {
"default": "57.0",
"versions": {
"57.0": {
"image": "selenoid/firefox:88.0",
"port": "4444",
"path": "/wd/hub"
}
}
}
}
version: '3'
services:
selenoid:
image: "aerokube/selenoid"
network_mode: bridge
ports:
- "4444:4444"
volumes:
- "$PWD:/etc/selenoid/" # assumed current dir contains browsers.json
- "/var/run/docker.sock:/var/run/docker.sock"
selenoid-ui:
image: "aerokube/selenoid-ui"
network_mode: bridge
links:
- selenoid
ports:
- "8080:8080"
command: ["--selenoid-uri", "http://selenoid:4444"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment