Docker 또는 Laradock에서 Debian 시스템 미러 소스를 교체하여 소프트웨어 설치 문제 해결
2903 단어 dockerdockerfilelaradock
Docker Debian 미러 소스 교체
대부분의 기본적인 Docker 거울은 외국이고 채택된 거울의 원천도 외국이기 때문에 방문이 느리기 때문에 우리는 국내(예를 들어 아리운이나 163 등)로 교체해야 한다.
참고: Debian 미러 소스 주소는 버전별로 다릅니다.
Debian 7.x (wheezy)
# apt-get
RUN echo \
deb http://mirrors.aliyun.com/debian/ wheezy main non-free contrib\
deb http://mirrors.aliyun.com/debian/ wheezy-proposed-updates main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ wheezy main non-free contrib\
> /etc/apt/sources.list
Debian 8.x (jessie)
# apt-get
RUN echo \
deb http://mirrors.aliyun.com/debian/ jessie main non-free contrib\
deb http://mirrors.aliyun.com/debian/ jessie-proposed-updates main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ jessie main non-free contrib\
> /etc/apt/sources.list
Debian 9.x (stretch)
# apt-get
RUN echo \
deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib\
deb http://mirrors.aliyun.com/debian-security stretch/updates main\
deb-src http://mirrors.aliyun.com/debian-security stretch/updates main\
deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib\
deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib\
> /etc/apt/sources.list
Laradock 미러 구문 실패
기본적으로 해외 Debian 미러 소스를 사용하기 때문에 실행 중
4
apt-get
등의 명령으로 패키지를 분리하는 데 실패할 수 있습니다.4
Dockerfile
기본 미러 소스 교체를 위한 RUN 명령 추가다음은 예일 뿐입니다.
현재 Laradock 버전에 따라 인용된 시스템 이미지와 버전에 대한 주의가 다르므로 다른 시스템(eg: CentOS)은 증상에 따라 약을 처방해 주십시오.
# apt-get
RUN echo \
deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib\
deb http://mirrors.aliyun.com/debian-security stretch/updates main\
deb-src http://mirrors.aliyun.com/debian-security stretch/updates main\
deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib\
deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib\
deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib\
> /etc/apt/sources.list
읽어주셔서 감사합니다. 내용이 괜찮은 것 같아서 좋아요를 눌러주세요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Swarm의 도커 비밀이 게시물에서는 Redis를 사용한 실제 시나리오 예제를 제공하여 사용 방법을 보여주고자 합니다. Docker 기술에 대한 기본 지식 Docker Swarm 오케스트레이터에 대한 기본 지식 "Docker Swarm ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.