일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 차원 축소
- LDA
- 타입스크립트
- ADP 실기
- frontend
- DBSCAN
- React
- 빅쿼리
- 구글
- docker
- 리액트
- 최적화
- 캐글
- 머신러닝
- 파이썬
- 쿠버네티스
- python
- ADP
- TooBigToInnovate
- bigquery
- do it
- 프론트엔드
- 대감집
- 심층신경망
- 클러스터링
- Kaggle
- 대감집 체험기
- Machine Learning
- Kubernetes
- r
- Today
- Total
목록docker (2)
No Story, No Ecstasy
1. React 개발을 위한 환경 구성 - create-react-app이란? 페이스북에서 만든 react 웹 개발용 boilerplate npx create-react-app 2. 디렉토리 진입 후 Docker 실행을 위한 파일 작성 2.1. docker-compose.yml version: '3.7' services: react_01_app: container_name: react_01_app build: context: . dockerfile: Dockerfile volumes: - '.:/app' - '/app/node_modules' ports: - '3001:3000' environment: - NODE_ENV=development - CHOKIDAR_USEPOLLING=true #App이 수..
- Docker Storage Driver 1. aufs (the preferred storage driver for Docker 18.06 and older) . 최초 드라이버 . Ubuntu/Debian에서만 지원 . 빠른 컨테이너 시작 시간, 효율적 스토리지/메모리 사용 . Bad Use Case: 높은 write 활동 2. overlay2 (the preferred storage driver, for all currently supported Linux distributions, 210108 기준) . 최신 드라이버 (default option) . 단순한 디자인 . aufs보다 덜 안정적인 대신 빠름 . 효율적 메모리 사용 . Bad Use Case: container 변경이 잦을때 *참고: d..