Skip to content

Instantly share code, notes, and snippets.

@Xotabu4
Created January 18, 2018 11:20
Show Gist options
  • Save Xotabu4/aa7daf656411700ed62ea4c9d9af5820 to your computer and use it in GitHub Desktop.
Save Xotabu4/aa7daf656411700ed62ea4c9d9af5820 to your computer and use it in GitHub Desktop.
selenoid docker compose
version: "2"
services:
selenoid:
container_name: selenoid
network_mode: bridge
image: "aerokube/selenoid:1.3.9"
command: -limit 15 -retry-count 1000
ports:
- 4444:4444
volumes:
- ./config:/etc/selenoid:ro
- /var/run/docker.sock:/var/run/docker.sock
selenoid-ui:
container_name: selenoid-ui
network_mode: bridge
image: "aerokube/selenoid-ui:1.5.1"
command: -selenoid-uri 'http://selenoid:4444'
ports:
- 8080:8080
links:
- selenoid
telegraf:
image: telegraf:latest
container_name: telegraf
network_mode: "host"
volumes:
- ./telegraf.conf:/etc/telegraf/telegraf.conf:ro
environment:
# real influx host
INFLUXDB_URI: "http://localhost:8086"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment