# 创建临时容器docker run -it --name temp_container image_name /bin/bash# 复制配置文件到本地机器docker cp temp_container:/path/to/config/file /path/on/host# 修改本地的配置文件nano /path/on/host/config/file# 将修改后的配置文件复制到镜像中docker cp /path/on/host/config/file temp_container...