有人执行后:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.deshand.adc</groupId>
<artifactId>test-assignment</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
</dependencies>
我可以查看该bash的历史记录吗?
我不认为docker exec -it ImageName /bin/bash
exit
是正确的命令或docker image inspect
答案 0 :(得分:1)
您需要输入已停止的容器(如果仍然存在)以获取其中的bash历史记录:
# The only way is to first create an image from it
docker commit $STOPPED_CONTAINER user/test_image
# Then run a container based on the image to launch the `history` command inside it
docker run --rm -ti user/test_image history
答案 1 :(得分:1)
问:有什么办法可以查看docker容器bash
shell的历史记录吗?
A:是的,你可以。当用户退出shell会话时,其历史记录将写入名为.bash_history
的文件中,并且位于用户的主目录中,在本例中为/root/.bash_history
。
访问其内容的最简单方法之一是将文件作为卷安装到主机上的另一个文件中。
示例:强>
touch container_bash_history
docker run -v $(pwd)/container_bash_history:/root/.bash_history IMAGE_NAME
您可能需要注意上面-v
选项中指定的绝对文件路径。这很重要,因为它向docker
指示挂载将作为单个文件挂载完成,而不是通常的目录挂载。