2016-07-23 16 views
2

ドッカーコンテナ内で実行されているプロキシの後ろにあるgitからフェッチしようとしました。ドッカーコンテナのプロキシの後ろにあるgitを取得しています

Removing intermediate container 84c4f6722d09 
Step 16 : RUN bundle install --without development test 
---> Running in bbc7bfff1bae 
Fetching gem metadata from https://rubygems.org/......... 
Fetching version metadata from https://rubygems.org/... 
Fetching dependency metadata from https://rubygems.org/.. 
Fetching git://github.com/seuros/state_machine.git 

私は私のプロキシがDockerfileにapt-getおよびそれ以前のgit cloneコマンドのために動作を確認することができます。

どうしたらいいですか?ここで

は私のDockerfile

FROM ruby:2.2.4 

LABEL Description="slack-standup-bot (`master`) from ruby:2.2.4" 

ENV DEBIAN_FRONTEND noninteractive 
ENV TERM xterm 


ENV http_proxy http://192.168.0.43:8888 
ENV https_proxy http://192.168.0.43:8888 

RUN export HTTP_PROXY=http://192.168.0.43:8888 
RUN export HTTPS_PROXY=http://192.168.0.43:8888 


# See https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ 
RUN apt-get update && apt-get install -y \ 
    build-essential \ 
    libpq-dev \ 
    git-core \ 
    postgresql-client \ 
    nodejs \ 
    && rm -rf /var/lib/apt/lists/* 


RUN git config --global http.proxy http://192.168.0.43:8888 

RUN mkdir -p /srv 
WORKDIR /srv 
RUN git clone https://github.com/sofetch/slack-standup-bot.git 
WORKDIR /srv/slack-standup-bot 

ENV RAILS_ENV production 
RUN bundle install --without development test 

COPY wait-pg-and-start.sh /srv/slack-standup-bot/wait-pg-and-start.sh 
COPY start-rails.sh /srv/slack-standup-bot/start-rails.sh 
RUN chmod +x /srv/slack-standup-bot/wait-pg-and-start.sh /srv/slack-standup-bot/start-rails.sh 
+0

下の答えを参考にして、利用可能なビルトインARG(プロキシ用)を使ってここにいくつかの行を保存することができます。 - https://docs.docker.com/engine/reference/builder/#/arg – johnharris85

答えて

3

Fetching git://github.com/seuros/state_machine.gitです:これはhttps protocolではありません。それはある
Git one

git clone前に)あなたのDockerfileに追加する(デフォルトではポート9418上):

RUN git config --global url."https://github.com/".insteadOf [email protected]: 

そのように、あなたはgitのは、HTTPSのURLを使用することを知っている、との恩恵を受けるあなたが設定したhttpsプロキシ右方向ここ

で私を指しているため@VonCへ

1

おかげで、Githubの

ビットバケットの
git config --global url."https://github.com/".insteadOf [email protected]: 
git config --global url."https://".insteadOf git:// 

のための問題を解決するためのソリューションです:VonCのに加えて

git config --global url."https://user:[email protected]".insteadOf ssh://[email protected] 
関連する問題