Skip to content

Instantly share code, notes, and snippets.

@superchell
Last active June 13, 2019 05:45
Show Gist options
  • Save superchell/99f072be59c06d6bfe421585ed55cdc5 to your computer and use it in GitHub Desktop.
Save superchell/99f072be59c06d6bfe421585ed55cdc5 to your computer and use it in GitHub Desktop.
## Копирование файлов ##
docker cp foo.txt mycontainer:/foo.txt в контейнер
docker cp mycontainer:/foo.txt foo.txt из контейнера
Множественное копирование
docker cp src/. mycontainer:/target
docker cp mycontainer:/src/. target
## Bash в контейнере ##
docker ps находим id контейнера
docker exec -it <container_id> /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment