Skip to content

Instantly share code, notes, and snippets.

Created February 2, 2018 09:18
Show Gist options
  • Save anonymous/e379b860257958ba3e385525c0fe02ae to your computer and use it in GitHub Desktop.
Save anonymous/e379b860257958ba3e385525c0fe02ae to your computer and use it in GitHub Desktop.
version: '3'
services:
selenoid:
image: "aerokube/selenoid"
environment:
- DOCKER_API_VERSION=1.25
- COMPOSE_API_VERSION=1.25
network_mode: bridge
ports:
- "4444:4444"
volumes:
- "/etc/selenoid:/etc/selenoid"
- "/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