Docker attach
Jump to navigation
Jump to search
Internal
Overview
Attaches the invoking shell's stdin, stdout and stderr to the container specified as argument.
The attachment will succeed only if the target container was started in interactive mode:
docker run [-d] -i alpine ash
Then, the attachment can be performed with:
docker attach alpine1