Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Elasticsearch
- kotlin spring
- kotlin coroutine
- Spring
- 코틀린 코루틴의 정석
- minikube
- Kubernetes
- MySQL
- 정보처리기사실기 기출문제
- 공부
- 정보처리기사 실기 기출문제
- AI
- Pinpoint
- 티스토리챌린지
- AWS EKS
- CKA
- IntelliJ
- Java
- mysql 튜닝
- kotlin querydsl
- CloudWatch
- 정보처리기사 실기
- APM
- 기록으로 실력을 쌓자
- kotlin
- 오블완
- Linux
- aws
- PETERICA
- CKA 기출문제
Archives
- Today
- Total
피터의 개발이야기
Docker 파일복사 | 폴더복사 (로컬 - 컨테이너) 본문
반응형
ㅁ Docker 로컬에서 컨테이너로 파일 복사
# 로컬 -> 컨테이너 파일복사
$ docker cp pray.zip webserver:/usr/share/nginx/html/.
# 컨테이너 접속
$ docker exec -it webserver bash
# 파일전송 확인
root@394d3afe91dd:/# cd /usr/share/nginx/html/
root@394d3afe91dd:/usr/share/nginx/html# ls
50x.html index.html pray.zip
ㅁ Docker 컨테이너에서 로컬로 파일 복사
# 컨테이너의 50x.html을 로컬로 복사
$ docker cp webserver:/usr/share/nginx/html/50x.html 50x.html
# 파일전송 확인
$ ls
50x.html contents pray.zip
ㅁ Docker 로컬에서 컨테이너로 폴더 복사
#폴더 통째로 업로드
$ docker cp ./ webserver:/usr/share/nginx/html/test/.
# 컨테이너 접속 및 전송파일 확인
$ docker exec -it webserver bash
root@394d3afe91dd:/# cd usr/share/nginx/html/test/
root@394d3afe91dd:/usr/share/nginx/html/test# ls
contents pray.zip
ㅇ 글을 마무리하려고 할 때 문득 생각이 났습니다.
ㅇ 압축하지 않고 그냥 통째로 올리면 되는데... 구지 컨테이너에 unzip을 설치하였는지...
ㅇ 압축하지 않고 통째로 올리시면 됩니다.
반응형
'DevOps > Docker' 카테고리의 다른 글
[docker] docker compose 여러 명령 실행 (0) | 2024.02.21 |
---|---|
[Docker] Dokémon, Docker 웹관리 페이지, WEB GUI for Docker (2) | 2023.12.27 |
[Docker] 트러블슈팅 - err: exec: "docker-credential-osxkeychain" (0) | 2023.10.25 |
[Docker] Docker에서 CPU 및 메모리 제한 설정 (0) | 2023.09.26 |
[Docker] 자동완성 설정하기(zsh, MacOS), Insecure completion-dependent directories detected 해결 (0) | 2023.08.10 |
Comments