golang應用打包成docker鏡像

來源:互聯網
上載者:User

  golang編譯的應用是不需要依賴其他運行環境的,那麼為什麼還需要打包成docker鏡像呢?當需要附帶配置和日誌等檔案時可以更方便的移植和運行,下面介紹從dockerfile編譯成鏡像。

在項目根目錄建立dockerfile,內容如下:

FROM alpine:latest                  #基於的鏡像不是golang(733M),而是alpine(4.14M)MAINTAINER fanyang "luckyfanyang@gmail.com"WORKDIR $GOPATH/src/loginADD config        $GOPATH/src/config     #此目錄存放的是所有項目的資料庫配置ADD login/conf     $GOPATH/src/login/conf   #此目錄存放的是beego項目的配置
ADD login/login    $GOPATH/src/login/login  #編譯後的可執行檔RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2EXPOSE 8080ENTRYPOINT ["./login"]

ubuntu下開啟終端定位到src目錄(因為需要上傳config目錄,不能直接定位到login目錄)執行命令:

docker build -t login -f ./login/dockerfile . 

打包成鏡像以後運行命令:

docker run -d -p 8080:8080 login

有時候想共用資料目錄使用下列命令:

docker run -itd --name voltest -v /opt/mytest alpinedocker run -it --name helloworld --volumes-from=voltest alpine

這樣在voltest下mytest目錄裡建立的檔案會出現在helloworld下的mytest目錄,進入目錄查詢檔案使用:

docker exec -it voltest sh

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.