Hello
I'm working with a dockerized ruby on rails application.
is there a way to run a cucumber scenario through the command C-c ,s in the existing docker container?
The docker-compose command use for the mode is run, when actually I need exec.
I set the variable feature-docker-compose-command to "docker-compose exec -it".
But the command triggered for the feature-mode is: docker-compose exec -it run [CONTAINER_NAME]
it should be docker-compose exec -it [CONTAINER_NAME].
Hello I'm working with a dockerized ruby on rails application. is there a way to run a cucumber scenario through the command
C-c ,s
in the existing docker container? The docker-compose command use for the mode isrun
, when actually I needexec
.I set the variable
feature-docker-compose-command
to "docker-compose exec -it". But the command triggered for the feature-mode is:docker-compose exec -it run [CONTAINER_NAME]
it should bedocker-compose exec -it [CONTAINER_NAME]
.Thanks in advance.