Results of 11 - 20 of about 99 for FROM (0.055 sec.)
ベース・イメージの作成 6830
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... ージは基準とするイメージのことです。 Dockerfile 内の FROM ディレクティブによって指定されます。 Dockerfile 内 ... もあります。 ベース・イメージは Dockerfile において FROM 行がないか、あるいは FROM scratch が記述されます。 ... を利用した最小コンテナの生成は以下のようになります。 FROM scratch ADD hello / CMD [ "/hello" ] Docker GitHub ...
https://man.plustar.jp/docker/engine/userguide/eng-image/baseimages.html - [similar]
run 6726
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... iver = "" コンテナのボリューム・ドライバ --volumes-from =[] 指定したコンテナからボリュームをマウント -w, - ... -net) コンテナからボリュームをマウント(--volumes-from) STDIN・STDOUT・STDERRのアタッチ(-a) ホスト・デバ ... います。 コンテナからボリュームをマウント(--volumes-from) ¶ $ docker run --volumes-from 777f7dc92da7 --volu ... mes-from ba8c0c54f0f2:ro -i -t ubuntu pwd --volumes-from...
https://man.plustar.jp/docker/engine/reference/commandline/run.html - [similar]
イメージ、コンテナ、ストレージ・ドライバについて 6687
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... 。 たとえば以下のような Dockerfile を考えてみます。 FROM ubuntu:15.04 COPY . /app RUN make /app CMD python ... マンドのそれぞれが 1 つのレイヤを生成します。 まずは FROM 命令によって ubuntu:15.04 イメージから 1 つのレイヤ ... きます。 $ docker pull ubuntu:15.04 15 .04: Pulling from library/ubuntu 1ba8ac955b97: Pull complete f157c4e ... e-image:1.0 というイメージが作られるものとします。 FROM ubuntu:16.10 COPY . /app 2 つめの Dockerfile は ac ...
https://man.plustar.jp/docker/storage/storagedriver/imagesandcontainers.html - [similar]
Swarm で Compose を使う 6635
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... version : "2" services : foo : image : foo volumes_from : [ "bar" ] network_mode : "service:baz" bar : ima ... す。 version: "2" services: foo: image: foo volumes_from: [ "bar" ] network_mode: "service:baz" environment ... エラーが出るかもしれません。 docker: Error response from daemon: unable to find a node that satisfies conta ... フォーマットであれば net: "container:..." ) volumes_from links 手動スケジューリング ¶ Swarm にはコンテナをど ...
https://man.plustar.jp/docker/compose/swarm.html - [similar]
Fedora 6635
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... image 'hello-world:latest' locally latest: Pulling from hello-world a8219747be10: Pull complete 91c95931e5 ... ownloaded newer image for hello-world:latest Hello from Docker. This message shows that your installation ... . The Docker daemon pulled the "hello-world" image from the Docker Hub. ( Assuming it was not already loca ... e. ) 3 . The Docker daemon created a new container from that image which runs the executable that produces ...
https://man.plustar.jp/docker/engine/installation/linux/docker-ce/fedora.html - [similar]
Compose を始めましょう 6582
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... エディタで app.py という名称のファイルを作成します。 from flask import Flask from redis import Redis app = F ... e という名称のファイルを作成し、次の内容にします。 FROM python:3.4-alpine ADD . /code WORKDIR /code RUN pi ... て保存します。例えば Hello World! メッセージを Hello from Docker! に変更することにします。 return 'Hello fro ...
https://man.plustar.jp/docker/compose/gettingstarted.html - [similar]
Registry 設定リファレンス 6582
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... ame : mailuser password : password insecure : true from : sender@example.com to : - errors@example.com log ... e : sendername password : password insecure : true from : name@sendhost.com to : - name@receivehost.com ho ... generated URLs. Otherwise, these URLs are derived from client requests. secret yes A random piece of data ... ontent as HTML if they are directed to load a page from the registry. This header is included in the examp ...
https://man.plustar.jp/docker/registry/configuration.html - [similar]
apt-cacher-ng サービスの Docker 化 6543
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... Docker daemon # which acts as an APT proxy server. FROM ubuntu MAINTAINER SvenDowideit@docker.com VOLUME [ ... 盤となるバージョンで apt 設定を行う方法があります。 FROM ubuntu RUN echo 'Acquire::http { Proxy "http://doc ... ージを構築します。 $ docker run --rm -t -i --volumes-from test_apt_cacher_ng eg_apt_cacher_ng bash $$ /usr/l ...
https://man.plustar.jp/docker/engine/examples/apt-cacher-ng.html - [similar]
PostgreSQL の Docker 化 6543
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... gresql_service/ にあるサンプルの Dockerfile です # FROM ubuntu MAINTAINER SvenDowideit@docker.com # Add th ... (-194.0, 53.0)'); INSERT 0 1 $ docker = # select * from cities; name | location ---------------+---------- ... リュームを定義できます。 $ docker run --rm --volumes-from pg_test -t -i busybox sh / # ls bin etc lib linuxr ...
https://man.plustar.jp/docker/engine/examples/postgresql_service.html - [similar]
イメージの構築 6543
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... ra イメージを構築しましょう。 # ここはコメントです FROM ubuntu:14.04 MAINTAINER Kate Smith <ksmith@example ... ートメント 注釈 # を使ってコメントを示せます 冒頭の FROM 命令は Docker に対して基となるイメージを伝えます。 ... kB Sending build context to Docker daemon Step 1 : FROM ubuntu:14.04 ---> e54ca5efa2e9 Step 2 : MAINTAINER ... e5 unable to convert "\xC3" to UTF-8 in conversion from ASCII-8BIT to UTF-8 to US-ASCII for README.rdoc, s ...
https://man.plustar.jp/docker/engine/tutorials/dockerimages.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT