본문 바로가기

개발/Shell3

[Docker] jenkins 설치가 안될때 docker에서 jenkins 이미지를 받으려고 하면 아래와 같은 에러가 발생한다. $ docker pull jenkins Using default tag: latest Error response from daemon: manifest for jenkins:latest not found: manifest unknown: manifest unknown 해결 docker hub의 jenkins description을 보면 deprecated 되었다고 안내한다. jenkins/jenkins:lts image 링크를 누르면 새로운 jenkins repository로 안내한다. LTS를 받으려면 docker pull jenkins/jenkins:lts-jkd11 최신버전을 받으려면 docker pull jenki.. 2021. 7. 10.
apt와 apt-get 차이점 명령어가 궁금할땐 man을 사용하거나 홈페이지 docs를 참고하자. apt provides a high-level commandline interface for the package management system. It is intended as an end user interface and enables some options better suited for interactive usage by default compared to more specialized APT tools like apt-get(8) and apt-cache(8). ... SCRIPT USAGE AND DIFFERENCES FROM OTHER APT TOOLS The apt(8) commandline is designed as .. 2021. 7. 7.
[Docker] Ubuntu20.04에서 man 사용하기 Docker 명령으로 우분투 설치, 실행 docker run -it --name dubuntu ubuntu:20.04 /bin/bash ctrl + p, ctrl + q를 차례로 누르면 빠져나올 수 있다. man apt 명령어를 사용하면 이런 안내 메시지가 나온다. This system has been minimized by removing packages and content that are not required on a system that users do not log into. To restore this content, including manpages, you can run the 'unminimize' command. You will still need to ensure the 'man-d.. 2021. 7. 7.