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
- torchtext
- Python
- Data Structure
- lstm
- 도커
- Deeplearning
- deep learning
- CS
- COLAB
- vs code
- Algorithm
- 자료구조
- gru
- tutorial
- NLP
- contiguous
- docker
- Transformation
- rnn
- attention
- 인디음악
- dl
- Analog Rebellion
- pytorch
Archives
- Today
- Total
Deep learning/Machine Learning/CS 공부기록
Docker 명령어 정리 본문
1. 실행 중인 컨테이너 확인
docker ps
docker ps -a
밑은 중지 중인 컨테이너까지 모두 포함
2. 실행 중인 container에 접속
docker attach <컨테이너 이름 혹은 아이디>
3. 컨테이너 이름 변경
docker rename <옛날 이름> <새 이름>
4. 파일 복사
docker cp <컨테이너 이름>:<파일> <옮길 주소>