[Docker] 5. Docker Hub란
·
Docker 및 Kubernetes/Docker
이번 글에서는 Docker Hub에 대해 소개 할 예정이다. 큰 목차는 다음과 같다.1. What is Docker Hub?2. Docker Hub 회원가입3. Docker Login4. Docker Push5. Docker Pull6. 마무리 What is Docker Hub?  `Docker Hub`는 다음과 같다.Docker image를 저장하고 공유할 수 있는 클라우드 기반의 저장소 서비스  이는 `Docker image`를 저장, 관리, 공유할 수 있는 가장 대표적인 플랫폼으로 널리 사용되고 있다. 주요 기능은 다음과 같다. 개발자가 생성한 `Docker image`를 저장할 수 있는 중앙 저장소를 제공하기 때문에 저장된 image는 언제든지 다운로드받아 사용할 수 있다.다른 사람들과 공유하거나..
[LeetCode] 2017. Grid Game (Python)
·
알고리즘/LeetCode
난이도: Medium 문제 설명You are given a 0-indexed 2D array grid of size 2 x n, where grid[r][c] represents the number of points at position (r, c) on the matrix. Two robots are playing a game on this matrix. Both robots initially start at (0, 0) and want to reach (1, n-1). Each robot may only move to the right ((r, c) to (r, c + 1)) or down ((r, c) to (r + 1, c)). At the start of the game, the first ro..