docker search

search Usage: docker search [OPTIONS] TERM Search the Docker Hub for images --automated Only show automated builds --help Print usage --no-trunc Don't truncate output -s, --stars=0 Only displays with at least x stars Search Docker Hub for images See Find Public Images on Docker Hub for more details on finding shared images from the command line. Note: Search queries will only return up to 25 results Examples Search images by name This example

IPv6 with Docker

IPv6 with Docker The information in this section explains IPv6 with the Docker default bridge. This is a bridge network named bridge created automatically when you install Docker. As we are running out of IPv4 addresses the IETF has standardized an IPv4 successor, Internet Protocol Version 6 , in RFC 2460. Both protocols, IPv4 and IPv6, reside on layer 3 of the OSI model. How IPv6 works on Docker By default, the Docker server configures the container network for IPv4 only. You can enable IPv4/I

Manage keys for content trust

Manage keys for content trust Trust for an image tag is managed through the use of keys. Docker’s content trust makes use of five different types of keys: Key Description root key Root of content trust for an image tag. When content trust is enabled, you create the root key once. Also known as the offline key, because it should be kept offline. targets This key allows you to sign image tags, to manage delegations including delegated keys or permitted delegation paths. Also known as the reposito

Dockerizing a Couchbase service

Dockerizing a Couchbase service This example shows how to start a Couchbase server using Docker Compose, configure it using its REST API, and query it. Couchbase is an open source, document-oriented NoSQL database for modern web, mobile, and IoT applications. It is designed for ease of development and Internet-scale performance. Start Couchbase server Couchbase Docker images are published at Docker Hub. Start Couchbase server as: docker run -d --name db -p 8091-8093:8091-8093 -p 11210:11210 cou

Installation on Windows

Windows Note: This release of Docker deprecates the Boot2Docker command line in favor of Docker Machine. Use the Docker Toolbox to install Docker Machine as well as the other Docker tools. You install Docker using Docker Toolbox. Docker Toolbox includes the following Docker tools: Docker Machine for running the docker-machine binary Docker Engine for running the docker binary Kitematic, the Docker GUI a shell preconfigured for a Docker command-line environment Oracle VM VirtualBox Because t

How to get Swarm

How to get Docker Swarm You can create a Docker Swarm cluster using the swarm executable image from a container or using an executable swarm binary you install on your system. This page introduces the two methods and discusses their pros and cons. Create a cluster with an interactive container You can use the Docker Swarm official image to create a cluster. The image is built by Docker and updated regularly through an automated build. To use the image, you run it a container via the Engine dock

Dockerizing MongoDB

Dockerizing MongoDB Introduction In this example, we are going to learn how to build a Docker image with MongoDB pre-installed. We’ll also see how to push that image to the Docker Hub registry and share it with others! Note: This guide will show the mechanics of building a MongoDB container, but you will probably want to use the official image on Docker Hub Using Docker and containers for deploying MongoDB instances will bring several benefits, such as: Easy to maintain, highly configurable M

Build your own bridge

Build your own bridge This section explains how to build your own bridge to replace the Docker default bridge. This is a bridge network named bridge created automatically when you install Docker. Note: The Docker networks feature allows you to create user-defined networks in addition to the default bridge network. You can set up your own bridge before starting Docker and use -b BRIDGE or --bridge=BRIDGE to tell Docker to use your bridge instead. If you already have Docker up and running with

VMware Fusion

VMware Fusion Creates machines locally on VMware Fusion. Requires VMware Fusion to be installed. $ docker-machine create --driver vmwarefusion vm Options: --vmwarefusion-boot2docker-url: URL for boot2docker image. --vmwarefusion-cpu-count: Number of CPUs for the machine (-1 to use the number of CPUs available) --vmwarefusion-disk-size: Size of disk for host VM (in MB). --vmwarefusion-memory-size: Size of memory for host VM (in MB). --vmwarefusion-no-share: Disable the mount of your home d

Remote API v1.20

Docker Remote API v1.20 1. Brief introduction The Remote API has replaced rcli. The daemon listens on unix:///var/run/docker.sock but you can Bind Docker to another host/port or a Unix socket. The API tends to be REST. However, for some complex commands, like attach or pull, the HTTP connection is hijacked to transport stdout, stdin and stderr. When the client API version is newer than the daemon’s, these calls return an HTTP 400 Bad Request error message. 2. Endpoints 2.1 Containers List con