How to view files in Docker image

How to view files in Docker image

How to view files in a docker image

1. If it is already running

For the already running image, we can view it by its ContrainerID

docker attach ContainerID

In this way, the corresponding container must be running and not in the stopped state.

2. If it is not running

If it is not running, you can copy the files in the Docker image to the host. The command is as follows:

docker cp <container name>:<path> <host path>

like:

sudo docker cp nginx-ubuntu-container:/etc/apt/sources.list ~/Documents/

This method does not require the corresponding container to be running.

Content extension:

Copy the file from the container to the host, which is the id of the container process

docker cp container process id:/logs/temp ./

Get data from the host via scp

scp remote_user@remoteIp:/logs.temp ./

This is the end of this article about how to view files in docker images. For more information about how to view file contents in docker images, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Docker gets the image and reports an error: docker: Error response from daemon
  • How to pull the docker image to view the version
  • Summary of Docker's commonly used commands for clearing container images
  • How to delete an image in Docker
  • 12 tips to optimize Docker image security

<<:  Detailed explanation of JavaScript clipboard usage

>>:  Tutorial on installing the unpacked version of mysql5.7 on CentOS 7

Recommend

HTML head tag meta to achieve refresh redirection

Copy code The code is as follows: <html> &l...

JavaScript closure details

Table of contents 1. What is a closure? 2. The ro...

HTML embed tag usage and attributes detailed explanation

1. Basic grammar Copy code The code is as follows...

Detailed explanation of Vue's hash jump principle

Table of contents The difference between hash and...

How to use filters to implement monitoring in Zabbix

Recently, when I was working on monitoring equipm...

Vue+webrtc (Tencent Cloud) practice of implementing live broadcast function

Table of contents 1. Live broadcast effect 2. Ste...

Detailed explanation of MySQL sql99 syntax inner join and non-equivalent join

#Case: Query employee salary levels SELECT salary...

Usage and scenario analysis of npx command in Node.js

npx usage tutorial Tonight, when I was learning V...

Linux method example to view all information of the process

There is a task process on the server. When we us...

jQuery realizes the full function of shopping cart

This article shares the specific code of jQuery t...

Two implementations of front-end routing from vue-router

Table of contents Mode Parameters HashHistory Has...

Use of Linux ls command

1. Introduction The ls command is used to display...

JavaScript implements asynchronous submission of form data

This article example shares the specific code of ...

Using zabbix to monitor the ogg process (Linux platform)

The ogg process of a database produced some time ...

Summary of solutions for MySQL not supporting group by

I downloaded and installed the latest version of ...