https://jyj98020.tistory.com/197
Doker failed to initialize 오류 해결 방법
=> C:\Users\사용자명\AppData\Roaming\Docker\settings.json 삭제 후 재실행
jyj98020.tistory.com
https://jyj98020.tistory.com/202
Docker 설치 오류
1. Docker 다운로드 https://www.docker.com/products/docker-desktop Docker Desktop for Mac and Windows | Docker Learn why Docker Desktop is the preferred choice for millions of developers building con..
jyj98020.tistory.com
https://jyj98020.tistory.com/211
쿠버네티스 / 도커 / 도커 허브 / 도커 이미지 / 도커 컨테이너 / 도커 볼륨
쿠버네티스(Kubernetes) 컨테이너를 대량으로 관리하는 프로그램 쿠버네티스는 컨테이너화 된 애플리케이션의 자동 디플로이, 스케일링 등을 제공하는 관리시스템 도커(Docker) 리눅스의 기능을 사
jyj98020.tistory.com
https://jyj98020.tistory.com/212
도커 명령어(pull, create, start, attach, commit, run, stop, images, ps, exec, rm, container, volume, inspect, logs)
> docker pull {이미지명} > docker pull {이미지명:태그명} 이미지 가져오기 용량 먹음 [컨테이너 실행 방법1] > docker create -it --name encore ubuntu:18.04 컨테이너 생성 (실행 X) > docker start encore..
jyj98020.tistory.com
https://jyj98020.tistory.com/213
도커 파일(Dockerfile) 개념/작성/실행/배포
개념 나만의 이미지를 만들기 위한 설계도 각 프로젝트 폴더(frontend, backend 등)마다 가지고 있어야 하는 파일 레시피 FROM, WORKDIR, ENV, RUN, COPY, CMD [실습 1] 1. Frontend(node.js) 프로젝트 폴더 내 D..
jyj98020.tistory.com
https://jyj98020.tistory.com/214
도커 컴포즈 파일(docker-compose.yml) 개념/작성/실행
개념 각 프로젝트의 Dockerfile을 생성해야하고, 프로젝트끼리 연결해줘야 하는 번거로움을 없앨 수 있는 파일 상차림의 매뉴얼 어느 서버에든 도커 환경만 설치되어 있으면 git 등으로 이 프로젝
jyj98020.tistory.com
https://jyj98020.tistory.com/218
Docker에 Spring Boot 컨테이너 띄우기
1. IntelliJ 오른쪽 상단 Gradle 버튼 선택 2. 프로젝트명 > Tasks > build > bootjar 더블클릭 3. IntelliJ 왼쪽 상단 Project > 프로젝트명 > build > libs > 프로젝트명-0.0.1-SNAPSHOT.jar 파일 생성된 것..
jyj98020.tistory.com
https://jyj98020.tistory.com/219
Docker에 React 컨테이너 띄우기
1. 프로젝트 root에 Dockerfile 작성 FROM node:16.13.2 # set working directory WORKDIR /app # `/app/node_modules/.bin`을 $PATH 에 추가 ENV PATH /app/node_modules/.bin:$PATH # app dependencies, install..
jyj98020.tistory.com
https://jyj98020.tistory.com/223
도커 이미지 배포 방법 (파일 / 도커허브)
1. 도커 이미지 파일로 배포한 후 파일 로드하기 > docker run -it --name {컨테이너명} {이미지명}:{태그명} > docker commit -a '{이름}' -m '{dev_env}' share_test {이미지명}:{태그명} > docker save -o {파..
jyj98020.tistory.com
'두두의 IT > Today I Learned' 카테고리의 다른 글
[220617] UTM, Ubuntu, OCA, Linked List (0) | 2022.06.17 |
---|---|
[220616] OCA, AWS 강의/Amplify, 자료구조 (0) | 2022.06.16 |
[220615] OCA, 코테, 기술 블로그, AWS, CI/CD, 자료구조/알고리즘 (0) | 2022.06.15 |
[220602-220609] AngularJS, JIRA (0) | 2022.06.02 |
[220517-24] iOS 배포, SQLD, Spring Boot Annotation (0) | 2022.05.24 |