[데 비 안 GNU / 리 눅 스 기반 docker debain - nginx 구축 (1)]

dockertoolbox 를 다운로드 한 지 며칠 이 지 났 습 니 다. docker 의 공식 문서 설정 에 따라 다운로드 합 니 다.아침 에 nginx 를 다운로드 하면 미 러 를 탑재 하여 각종 플랫폼 호환성 문제 가 발생 합 니 다. 그 중 하 나 는 dockertoolbox 가 virtualbox 로 가상 환경 을 구성 하고 dockerfile 로 nginx 미 러 를 생 성 할 때 virtualbox 의 가상 환경 과 windows 의 플랫폼 이 일치 하지 않 아 설정 파일 을 공유 할 수 없습니다.
그래서 해결 방법 은 다음 과 같다. 1. virtualbox 에 SAMBA 와 유사 한 소프트웨어 를 설치 하거나 Liux 에서 계속 놀 거나
더 이상 참 을 수 없 었 다. 그래서 N 오래 누 워 있 던 vmware 가상 컴퓨터 를 켜 고 centos 6.7 에서 docker 를 다시 만 들 었 다.
  • download debian
    [root@localhost docker]# docker pull hub.c.163.com/public/debian:7.3-tools
    [root@localhost docker]# docker tag 9efe4315cdbc debian:7.3
    [root@localhost docker]# docker images
    REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZEdebian 7.3 9efe4315cdbc 4 weeks ago 372.3 MBhub. c. 163. com / public / debian 7.3 - tools 9efe4315cdbc 4 weeks ago 372.3 MB
  • [root@localhost docker]# docker run -i -t -p 8866:80 debian:7.3 /bin/bash
  • debain 에 들 어가 nginx 를 다운로드 합 니 다.apt-get update && apt-get install -y nginx
  • nginx 시작
  •  /etc/init.d/nginx start
    
        nginx status  nginx     。
    
        :
    http://192.168.214.128:8866/
    Welcome to nginx!
    (192.168.214.128    ip),  !
    ![    ][2]
    
    

    주: 1. apt - get install - y nginx 는 apt - get update 소스 2 를 먼저 설치 해 야 합 니 다. 이 방법 은 centos 에서 debain 에 들 어 갈 때마다 nginx 를 다시 다운로드 해 야 합 니 다. (다음 버 전 개선, dockerfile 기반 미 러 발표)
    
      :
    This question already has an answer here:
    How do I fix the GPG error “NO_PUBKEY”? 10 answers
    When I run the command:
    
    sudo apt-get update
    I got this following warning:
    
    There is no public key available for the following key IDs: 1397BC53640DB551
    
        :

    sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1397BC53640DB551

    좋은 웹페이지 즐겨찾기