Server/Docker 6

[Ubuntu] Docker 설치하기

Aws Ec2로 만들어진 Ubuntu 서버에 Docker 설치하는 법을 알아보겠습니다. 1. Docker 설치 명령어 # 패키지 업데이트 sudo apt update # https관련 패키지 설치 sudo apt install apt-transport-https ca-certificates curl software-properties-common # docker repository 접근을 위한 gpg 키 설정 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - # docker repository 등록 sudo add-apt-repository "deb [arch=amd64] https://download.docker.c..

Server/Docker 2023.10.23

[Centos] aws linux centos에 docker로 jenkins 띄우기

centos 서버 자체에 jenkins 설치 하는 방법에 이어 docker로 jenkins를 띄우는 방법에 대해서 알아보겠습니다. 1. EC2 인스터스 시작 및 설정 1) 보안 그룹 설정 시 테스트를 위해 로컬 ip에 8080(기본 Jenkins 포트) 22(SSH)를 열어 둡니다. 2. EC2 인스턴스 연결 1) SSH로 인스턴스 연결 3. Docker 설치 sudo yum update -y sudo yum install -y docker sudo service docker start sudo usermod -a -G docker ec2-user 4. Jenkins Docker 이미지 실행 docker run -d -p 8080:8080 -p 50000:50000 --restart=always jenk..

Server/Docker 2023.08.08

.net core React docker image 만드는 법

.net core 기반 React 프로젝트를 Docker로 빌드 후 배포를 해보려고 합니다. 기본으로 제공되어있는 Dockfile로는 빌드가 진행되지 않고 실패가 떨어지게 될 것 입니다. RUN apt-get updateRUN apt-get install -y curlRUN apt-get install -y libpng-dev libjpeg-dev curl libxi6 build-essential libgl1-mesa-glxRUN curl -sL https://deb.nodesource.com/setup_lts.x | bash -RUN apt-get install -y nodejs React는 node.js 위에서 동작을 하고 npm으로 설치되어있는 여러가지 라이브러리가 필요하기 때문인데요. ASP.NE..

Server/Docker 2023.04.03

Docker 명령어

이번 시간에는 docker image, container 명령어를 알아보려고 합니다. * 이미지와 컨테이너는 도커에서 사용하는 가장 기본적인 단위이며 이미지와 컨테이너는 1:N 관계입니다. 1. 이미지 (Image) docker에서 image란 컨테이너 생성시 필요한 요소로 컨테이너의 목적에 맞는 바이너리와 의존성이 설치되어 있으며 여러 개의 계층으로 된 바이너리 파일로 존재합니다. 가) docker image 이름 구성 {repository_name}/{image_name}:{version} {image_name} 제외하고는 생략이 되며 {repository_name} 생략 시 docker hub로 인식 {version} 생략 시 lastest로 인식 나) docker image 명령어 # 저장소로 부..

Server/Docker 2023.01.29

Docker 설치 - linux편

Docker 설치 - windows편 (tistory.com) Docker 설치 - windows편 windows에서 docker를 설치하기 위해서 여러가지 방법이 있습니다. 그 중 가장 간단한 docker hub 설치하는 법을 정리해보도록 하겠습니다. 1. docker hub 설치 https://www.docker.com/products/docker-desktop/ Download Do nitpick92.tistory.com Docker란 애플리케이션을 신촉하게 구축, 테스트 및 배포할 수 있는 소프트웨어 플랫폼입니다. linux에 docker를 설치하는 법을 알아보려고 합니다. 1. linux에 docker 설치하는 방법 # 1.패키지 업데이트 sudo yum install -y yum-utils #..

Server/Docker 2023.01.29

Docker 설치 - windows편

windows에서 docker를 설치하기 위해서 여러가지 방법이 있습니다. 그 중 가장 간단한 docker hub 설치하는 법을 정리해보도록 하겠습니다. 1. docker hub 설치 https://www.docker.com/products/docker-desktop/ Download Docker Desktop | Docker Docker Desktop is available to download for free on Mac, Windows, or Linux operating systems. Get started with Docker today! www.docker.com 2. wsl2 installation is incomplete 오류 해결 https://wslstorestorage.blob.core..

Server/Docker 2023.01.29