ubuntu 5

Ubuntu에 Docker 특정 버전 설치하기

Docker 공식 GPG 키를 다운로드. $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - Docker의 stable 저장소를 등록 $ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 시스템 패키지 인덱스 업데이트 $ sudo apt-get update 설치 가능한 Docker 버전을 확인 $ apt-cache madison docker-ce docker-ce | 5:24.0.0-1~ubuntu.18.04~bionic | https://download.docker.co..

Docker 2023.05.04

Ubuntu에 Jenkins 설치하기

Ubuntu 18.04에서 검증된 내용 Java8 이상이 설치되어 있어야 한다. #Repository Key 추가 $ sudo wget -e https_proxy=http://proxy.gmarket.co.kr:8080 -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - #sources.list 에 Jenkins 패키지 저장소 추가 $ sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > \ /etc/apt/sources.list.d/jenkins.list' #패키지 인덱스정보 업데이트 $ sudo apt-get update #Jenkins 패키지 설치 $ ..

Jenkins 2022.11.20

Ubuntu에 Docker, Docker-Compose 설치

목차 [참고] Ubuntu 18.04, 20.04에서 정상동작하는 것 까지 확인함. [Docker 설치] https://myjamong.tistory.com/299 [Docker] Ubuntu 도커 설치 Ubuntu와 Docker 이 글에서는 Ubuntu 도커 설치와 관련된 내용을 다룬다. Docker는 리눅스를 기반으로 하기 때문에 리눅스 운영체제 위에서 돌아가야한다. Ubuntu는 Linux계열 운영체제로 바로 설치가 가능 myjamong.tistory.com $ sudo apt-get update # apt가 HTTPS 프로토콜을 통해서 repository를 사용할 수 있도록 패키지를 설치한다. $ sudo apt-get install \ apt-transport-https \ ca-certific..

Docker 2022.11.15