일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Java
- after_save
- mac
- 쿠버네티스
- with_indifferent_access
- Ruby on Rails
- 코틀린
- 우분투
- Migrate
- RUBY
- 오랜지파이
- ubuntu
- 이것이 자바다
- Kotlin
- MySQL
- 도커
- after_update
- 설치
- docker
- install
- change_column
- 우분투 24
- 주차장 시스템
- Time.znoe.now
- 사용중인포트검색
- Rails
- change_column_null
- Orange Pi 3B
- docket
- Visual Studio Code
- Today
- Total
목록Back-End /Docker&k8s (7)
중고 신입이 개발해보기..
도커- 도커는 컨테이너를 관리하는 소프트웨어이다. 컨테이너- 컨테이너는 서버를 효율적으로 사용하기 위한 가상화 기술이다. 서버 - 서비스를 제공하는 컴퓨터 엔터프라이즈 환경에서의 서버 운영 베어메탈 (bare metal) 하이퍼바이저 ( 컨테이너
$ docker rm -f ${docker ps -aq} 터미널에서 해당 명령어를 실행하면 모든 컨테이너를 삭제할 수 있다.
Colima https://velog.io/@movhr/MAC-OS-Colima-%EC%84%A4%EC%B9%98 [MAC OS] Colima 설치docker desktop 의 유료화로 인해 대체재로 나온 colima는 최소한의 설정으로 이용할 수 있는 컨테이너 런타임 로, CLI 환경에서 Docker의 컨테이너를 실행할 수 있는 오픈소스 소프트웨어 로 볼 수 있다.velog.io Podman https://blog.naver.com/pjt3591oo/222997069333 [podman] 도커를 대체할 podman 살펴보기안녕하세요 멍개입니다. 지난 시간에 컨테이너 표준을 다루면서 docker와 podman을 다뤘습니다. 이번시간은...blog.naver.com
우분투에 도커설치는 정보가 많아서.. 검색하면 쉽게 알수 있다.. 순서되로 실행하면 설치가 완료된다. $ sudo apt-get update$ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"$ sudo apt-get install docker..

기존에 설치된 Docker를 삭제.. $ curl -O https://raw.githubusercontent.com/docker/toolbox/master/osx/uninstall.sh https://velog.io/@chayezo/Mac%EC%97%90%EC%84%9C-Docker-%EC%82%AD%EC%A0%9C%ED%95%98%EA%B8%B0 요거 참고 ㅋ 다시 설치해보자.. https://hub.docker.com/editions/community/docker-ce-desktop-mac Docker Desktop for Mac by Docker | Docker Hub We and third parties use cookies or similar technologies ("Cookies") as d..
쿠버네티스는 무엇일까?? 용어들을 정리해보자. - 이것 무엇일까?? worker ingress master 젠킨스 jenkins - 오픈 소스 CI/CD 도구 - CI (Continuous Integration 지속적 통합 ) - CD (Continuous Delivery 지속적 배포(전달))
도커는 설치되어 있다고 햇을때.. mysql이미지를 검색해본다.. 오프셜이미지엔 [OK]가 표기 $ docker search mysqlNAME DESCRIPTION STARS OFFICIAL AUTOMATEDmysql MySQL is a widely used, open-source relation… 7929 [OK]mariadb MariaDB is a community-developed fork of MyS… 2646 [OK]mysql/mysql-server Optimized MySQL Server Docker images. Create… 598 [OK]percona Percona Server is a fork of the MySQL relati… 421 [OK]zabbix/zabbix-server-my..