We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running an interactive shell inside a container, a carriage return should be done after each newline. So ls -1 should produce something like:
ls -1
file1 file2 file3 ...
Line breaks get a newline, but no carriage return. The command ls -1 produces:
file1 file2 file3
docker run --rm -it alpine:latest sh
ls -1 /
The text was updated successfully, but these errors were encountered:
This looks like a dup of #1671 and #1672
Sorry, something went wrong.
@amancevice you're absolutely right. Guess I should rub that sand out of my eyes before reporting an issue. I'll close it.
Closed issues are locked after 30 days of inactivity. This helps our team focus on active issues.
If you have found a problem that seems similar to this, please open a new issue.
Send feedback to Docker Community Slack channels #docker-for-mac or #docker-for-windows. /lifecycle locked
No branches or pull requests
Expected behavior
When running an interactive shell inside a container, a carriage return should be done after each newline. So
ls -1
should produce something like:Actual behavior
Line breaks get a newline, but no carriage return. The command
ls -1
produces:Information
Steps to reproduce the behavior
docker run --rm -it alpine:latest sh
ls -1 /
in the containerThe text was updated successfully, but these errors were encountered: