“Docker Copier le fichier du conteneur à l'hôte” Réponses codées

Copiez les fichiers d'un conteneur Docker vers la machine hôte à l'aide de CMD

docker cp <containerId>:/file/path/within/container /host/path/target
Jealous Jaguar

Copie docker du conteneur à l'hébergement

# container to host
ocker cp <containerId>:/file/path/within/container /host/path/target

# host to container
docker cp /host/local/path/file <containerId>:/file/path/in/container/file
DreamCoder

Copier le fichier de l'hôte vers Docker Container

docker cp foo.txt mycontainer:/foo.txt
Fragile Fox

Copiez un fichier de la machine locale vers le conteneur Docker

docker cp <Path in the local machine> <Container ID>:<Path of file inside the container>
Zany Zebra

Docker Copier le fichier du conteneur à l'hôte

$ docker run -d --name httpd httpd

$ docker exec httpd pwd
/usr/local/apache2

$ docker exec httpd ls
bin
build
cgi-bin
conf
error
htdocs
icons
include
logs
modules

$ docker cp httpd:/usr/local/apache2/conf .
Tautvydas Slegaitis

Docker: copie de fichiers de Docker Container pour héberger

for copy file from a container to the host use the command
docker cp <containerId>:/file/path/within/container /host/path/target

You can also use (part of) the Container ID. The following command is equivalent to the first
sudo docker cp 1b4a:/out_read.jpg .


shafeeque

Réponses similaires à “Docker Copier le fichier du conteneur à l'hôte”

Questions similaires à “Docker Copier le fichier du conteneur à l'hôte”

Plus de réponses similaires à “Docker Copier le fichier du conteneur à l'hôte” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code