Docker (Japanese Wikipedia)

Analysis of information sources in references of the Wikipedia article "Docker" in Japanese language version.

refsWebsite
Global rank Japanese rank
low place
low place
low place
7,180th place
624th place
41st place
low place
7,271st place
383rd place
521st place
low place
1,383rd place
low place
low place
low place
low place
low place
3,367th place
9,964th place
low place
1,415th place
95th place
4,803rd place
4,776th place
3,857th place
4,231st place
5,386th place
3,620th place
low place
3,858th place
105th place
738th place

amazon.com

aws.amazon.com

cloud.google.com

  • Deploying a containerized web application [4]

debian.org

wiki.debian.org

  • Linux kernel 4.19 series [16]

docker.com

docs.docker.com

  • Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. Docker Documentations - Docker overview
  • Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. Docker Documentations - Docker overview
  • By taking advantage of Docker’s methodologies for shipping, testing, and deploying code quickly, you can significantly reduce the delay between writing code and running it in production. Docker Documentations - Docker overview
  • overlay2 is the preferred storage driver, for all currently supported Linux distributions, and requires no extra configuration. [6]
  • Volumes are stored in a part of the host filesystem which is managed by Docker [7]
  • Volumes are the best way to persist data in Docker. [8]
  • Bind mounts may be stored anywhere on the host system. [9]
  • Non-Docker processes on the Docker host or a Docker container can modify them at any time. [10]
  • tmpfs mounts are stored in the host system’s memory only, and are never written to the host system’s filesystem. [11]
  • containers can not only communicate by IP address, but can also resolve a container name to an IP address. This capability is called automatic service discovery. [12]
  • Create a network alias for a container [13]
  • Compose is a tool for defining and running multi-container Docker applications. docker docs - Overview of Docker Compose
  • Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment. docker docs - Overview of Docker Compose
  • Docker Swarm, a Docker-native clustering system, exposes the same API as a single Docker host, which means you can use Compose against a Swarm instance and run your apps across multiple hosts. [14]
  • By default, docker logs shows the command’s STDOUT and STDERR. docker docs
  • Each Docker daemon has a default logging driver, which each container uses unless you configure it to use a different logging driver. In addition to using the logging drivers included with Docker, you can also implement and use logging driver plugins. docker docs
  • The fluentd logging driver sends container logs to the Fluentd collector as structured log data. docker docs
  • By default, the logging driver connects to localhost:24224. Supply the fluentd-address option to connect to a different address. tcp(default) and unix sockets are supported. docker docs
  • To use this logging driver, start the fluentd daemon on a host. We recommend that you use the Fluentd docker image. docker docs
  • By default, docker pull pulls images from Docker Hub. It is also possible to manually specify the path of a registry to pull from. docker docs
  • Docker Engine is a client-server application with these major components: [17]
  • A server which is a type of long-running program called a daemon process (the dockerd command). [18]
  • A REST API which specifies interfaces that programs can use to talk to the daemon and instruct it what to do. [19]
  • A command line interface (CLI) client (the docker command). [20]
  • The CLI uses the Docker REST API to control or interact with the Docker daemon through scripting or direct CLI commands. [21]
  • A Docker registry stores Docker images. [22]
  • By default, the Docker daemon automatically starts containerd. [23]
  • Docker Hub is a public registry that anyone can use, and Docker is configured to look for images on Docker Hub by default. [24]
  • Docker is an open platform for developing, shipping, and running applications. [25]
  • Docker Trusted Registry (DTR) is the enterprise-grade image storage solution from Docker.[26]

docker.com

e-words.jp

github.com

  • "v26.1.3"; 閲覧日: 2024年5月16日; 出版日: 2024年5月16日.

itmedia.co.jp

atmarkit.itmedia.co.jp

nikkeibp.co.jp

corporate.nikkeibp.co.jp

ogis-ri.co.jp

publickey1.jp

qiita.com

redhat.com

sakura.ad.jp

knowledge.sakura.ad.jp

thinkit.co.jp

ubuntu.com

wiki.ubuntu.com

  • Ubuntu 18.04.4 ships with a v5.3 based Linux kernel [15]

visualstudio.com

code.visualstudio.com

  • Docker container as a full-featured development environment. [1]
  • This container can be used to run an application or to sandbox tools, libraries, or runtimes needed for working with a codebase. [2]
  • Container Deployed Applications: You deploy your application into one or more containers and would like to work locally in the containerized environment. [5]