Results of 11 - 20 of about 35 for example (0.040 sec.)
images 7988
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... の値に一致する場合に表示します。 次のフィルタは com.example.version に一致するラベルだけでなく、その値にも適用 ... されます。 $ docker images --filter "label=com.example.version" REPOSITORY TAG IMAGE ID CREATED SIZE matc ... 17 About a minute ago 188 .3 MB 次のフィルタは com.example.version ラベルと 1.0 値に一致するイメージを表示しま ... す。 $ docker images --filter "label=com.example.version=1.0" REPOSITORY TAG IMAGE ID CREATED SIZE ...
https://man.plustar.jp/docker/engine/reference/commandline/images.html - [similar]
Dockerfile リファレンス 7574
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... とと同じです。 以下に簡単な例を示します。 LABEL "com.example.vendor" = "ACME Incorporated" LABEL com.example.la ... ker inspect コマンドを用います。 "Labels" : { "com.example.vendor" : "ACME Incorporated" "com.example.label-w ... t>/<filename> にコピーします。 たとえば ADD http://example.com/foobar / という記述は /foobar というファイルを ... あれば、適切なファイルが見つけ出されます。 ( http://example.com では正しく動作しません。) <src> がディレクトリ ...
https://man.plustar.jp/docker/engine/reference/builder.html - [similar]
run 7510
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... =[] コンテナにメタデータを指定 ( 例: --label = com.example.key = value ) --label-file =[] 行ごとにラベルを記述 ... ベル付けします: $ docker run -l my-label --label com.example.foo = bar ubuntu bash my-label キーが値を指定しなけ ... えません)。以下は label-file 形式の記述例です。 com.example.label1 = "a label" # これはコメントです com.exampl ... e.label2 = another \ label com.example.label3 複数のラベル用ファイルを読み込むには、複数回 ...
https://man.plustar.jp/docker/engine/reference/commandline/run.html - [similar]
Docker configs を利用した設定データの保存 7510
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... =US/ST=CA/L=San Francisco/O=Docker/CN=Swarm Secret Example CA' root CA を設定します。 新規に root-ca.cnf とい ... CA/L = San Francisco/O = Docker/CN = Swarm Secret Example CA verify return :1 depth = 0 /C = US/ST = CA/L = ... CA/L = San Francisco/O = Docker/CN = Swarm Secret Example CA --- Server certificate -----BEGIN CERTIFICATE-- ... CA/L = San Francisco/O = Docker/CN = Swarm Secret Example CA --- No client certificate CA names sent --- SSL ...
https://man.plustar.jp/docker/engine/swarm/configs.html - [similar]
create 7447
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... name=value の形式で指定します。例えば、エンジンが example.com をプロキシ・サーバとして使うには、create コマン ... e -d virtualbox \ --engine-env HTTP_PROXY = http://example.com:8080 \ --engine-env HTTPS_PROXY = https://exam ... ple.com:8080 \ --engine-env NO_PROXY = example2.com \ proxbox マシン作成時に Docker Swarm オプショ ...
https://man.plustar.jp/docker/machine/reference/create.html - [similar]
コンテナの DNS を設定 7335
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... スト名 host に接続しようとする時、 search ドメインに example.com が指定されていれば、DNS 機構は host だけでなく ... 、 host.example.com に対しても名前解決を行います。検索用ドメインを ...
https://man.plustar.jp/docker/engine/userguide/networking/default_network/config... - [similar]
コンテナの DNS を設定 7335
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... スト名 host に接続しようとする時、 search ドメインに example.com が指定されていれば、DNS 機構は host だけでなく ... 、 host.example.com に対しても名前解決を行います。検索用ドメインを ...
https://man.plustar.jp/docker/network/default_network/configure-dns.html - [similar]
Docker for Mac を始めよう 7272
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... 情報を伝達(propagate)します。例えば、 http://proxy.example.com に対してプロキシ設定をすると、Docker はコンテナ ... ERM = xterm HOME = /root HTTP_PROXY = http://proxy.example.com:3128 http_proxy = http://proxy.example.com:312 ...
https://man.plustar.jp/docker/docker-for-mac/index.html - [similar]
Docker run リファレンス 7272
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... を実行して接続します。 $ docker run -d --name redis example/redis --bind 127 .0.0.1 $ # redis コンテナのネット ... スします $ docker run --rm -it --net container:redis example/redis-cli -h 127 .0.0.1 ユーザ定義ネットワーク ¶ ネ ... できます。 $ docker run -i -t --entrypoint /bin/bash example/redis あるいは、次の2つの例は ENTRYPOINT に更にパラ ... ものです。 $ docker run -i -t --entrypoint /bin/bash example/redis -c ls -l $ docker run -i -t --entrypoint /us ...
https://man.plustar.jp/docker/engine/reference/run.html - [similar]
ファイル間、プロジェクト間での Compose 設定の共有 7224
Docker-docs-ja 19.03 Guides - ガイド Docker の入手 Get started - 始めましょう Docker で開発 プロ ... ルから始めます。 docker-compose.yml ¶ web : image : example/my_web_app:latest links : - db - cache db : image ... す。 docker-compose.yml から始めます。 web : image : example/my_web_app:latest links : - db db : image : postgr ...
https://man.plustar.jp/docker/compose/extends.html - [similar]
PREV 1 2 3 4 NEXT