Created
February 2, 2018 09:18
-
-
Save anonymous/e379b860257958ba3e385525c0fe02ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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