I am using Codeship CI for my project.
I have selenium tests and I am using remote browser from selenium/standalone-firefox
but it\'s producing tons of logs, so
CodeShip uses a custom variant of docker-compose v1 that accepts an environment setting. The following in codeship-services.yml worked for me:
selenium:
image: selenium/standalone-chrome
cached: true
container_name: selenium
environment:
- SE_OPTS=-log /tmp/log.txt
The SE_OPTS value should not be in quotes. /tmp is writeable, other locations may result in a permission error.