$ docker-compose run app
# container immediately exists
nib workaround
$ docker-compose run app irb
IRB >
This is regression is a result of introducing history to the run command (fc1b9dde0b7664a07d047e5ce0a248edebe474dd). As it is currently implemented the History module is executing a script at container start and then expecting a command to be passed in.
For example:
Dockerfile
docker-compose native
nib currently
nib workaround
This is regression is a result of introducing history to the
run
command (fc1b9dde0b7664a07d047e5ce0a248edebe474dd). As it is currently implemented theHistory
module is executing a script at container start and then expecting a command to be passed in.