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
- pushnamed
- 크롤러
- List
- crawler
- DART
- python
- 웹크롤러
- Class
- 클래스
- 코틀린
- set
- map
- 플러터
- 콜렉션
- Collection
- animation
- text
- Android
- Flutter
- 함수
- import
- ML
- kotlin
- variable
- function
- 다트
- package
- texttheme
- textstyle
- 파이썬
Archives
- Today
- Total
목록도커 (1)
조용한 담장

원본 docker image 에 자신이 작업한 내용을 합치고자 할때 docker commit 을 사용 합니다. 1. ubuntu image 를 가져와 실행합니다. $ docker pull ubuntu $ docker run -it ubuntu 2. 내가 필요한 작업을 합니다. root@0a9b63f5f81d:/# apt-get update root@0a9b63f5f81d:/# apt-get install build-essential wget git python root@0a9b63f5f81d:/# exit 3. container 0a9b63f5f81d 의 내용을 commit 하여 새로운 이미지를 만듭니다. $ docker commit -m "ubuntu updated" 0a9b63f5f81d ubuntu..
tips
2020. 2. 10. 18:39