memostack
article thumbnail
Docker에서 우분투(Ubuntu 20.04) 시작하기
DevOps/Docker 2021. 2. 18. 11:43

도커 설치는 아래 참고 2021/02/18 - [Docker] - Window 도커 3.1.0(Docker) 설치 Window 도커 3.1.0(Docker) 설치 Docker Installer 다운로드 아래 사이트에서 Installer 를 설치 www.docker.com/get-started Get Started with Docker | Docker Learn about the complete container solution provided by Docker. Find informati.. memostack.tistory.com Docker에서 Ubuntu 20.04 시작하기 아래 도커 명령어를 수행하여 컨테이너 생성 및 실행 > docker run -d --name ubuntu -p 22:22 -it..

article thumbnail
Window 도커 3.1.0(Docker) 설치
DevOps/Docker 2021. 2. 18. 10:30

Docker Installer 다운로드 아래 사이트에서 Installer를 설치 www.docker.com/get-started Get Started with Docker | Docker Learn about the complete container solution provided by Docker. Find information for developers, IT operations, and business executives. www.docker.com Docker Desktop 설치 방금 사이트에서 다운로드한 Installer를 실행하여 Docker Desktop을 실행한다. Close and restart를 누르면, 컴퓨터가 재실행되면서 정상적으로 Docker Desktop이 설치된다. 참고 위와 ..

article thumbnail
React Application을 Docker 빌드하고 배포하기 (MacOSX)
Frontend/React 2020. 12. 22. 13:05

사전 준비 본 글에서는 Homebrew를 이용하여 node, yarn, docker를 설치한다. node.js 설치 $ brew install node yarn 설치 $ brew install yarn docker 설치 homebrew 최신버전에서는 brew cask install 대신에 brew --cask install 을 사용한다. $ brew --cask install docker React 프로젝트 생성 # create-react-app을 이용하여 리액트 프로젝트 생성할 예정 $ yarn add global create-react-app 프로젝트 생성 $ yarn create react-app test-app 만들어진 app을 실행시켜 본다. $ cd test-app $ yarn start (저..