Skip to content

Instantly share code, notes, and snippets.

@serpro69
Forked from anonymous/docker-compose.yml
Created February 5, 2018 09:16
Show Gist options
  • Save serpro69/a8c9a2696333042e39d705fd1cc1514f to your computer and use it in GitHub Desktop.
Save serpro69/a8c9a2696333042e39d705fd1cc1514f 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