도커 3

docker 삭제, docker reinstall, docker uninstall

OS : Windows 10 64bit Docker Desktop 사용 중 이와 같은 창에서 프로그래스 바가 넘어가지 않아 docker를 실행 할 수도 삭제 할 수도 없는 상황에 처했다. registry를 삭제 후 삭제하면 깔끔하게 삭제가 된다. 입력 후 레지스트리 창을 켠다. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Docker Desktop Docker Desktop registry key를 삭제한다. 그 후 다시 프로그램 추가제거에서 docker desktop 삭제를 시도하면 정상적으로 삭제가 되는 것을 확인 할 수 있다. 출처 https://github.com/docker/for-win/issues/7489 Un..

Docker 2021.11.05

docker 이미지 생성, docker hub 업로드, docker springboot mysql 연동

application.yml 혹은 application.properties 파일 수정 ​ 우선 local에서 작업한 springboot 프로젝트를 docker 이미지로 뽑아내기 위해 application.yml 혹은 application.properties 파일을 수정해야한다. //application.properties spring.datasource.url=jdbc:mysql://my_mysql:3306/mydatabase?useSSL=false&useUnicode=true&serverTimezone=Asia/Seoul&allowPublicKeyRetrieval=true application.properties 내용에 위 내용 말고도 다른 내용이 많을 것으로 예상된다. localhost 혹은 127...

Docker 2021.10.22

Docker 설치 mysql 설치 및 실행하기 Ubuntu 18.04

현재 서버에는 mysql 없음 ko@ko-MS-16F1:~$ mysql Command 'mysql' not found, but can be installed with: sudo apt install mysql-client-core-5.7 sudo apt install mariadb-client-core-10.1 설치 시작 ​ ​ Docker 저장소 설정 sudo apt-get update # 패키지 다운로드 sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common # Docker GPG 키 추가 sudo curl -fsSL https://download.docker.com/linux..

Docker 2021.10.22