I'm writing this up from memory, so errors may appear.
This has been updated to use SHA256 certificates.
- Go to http://www.startssl.com/
- Click on 'Control Panel'
I'm writing this up from memory, so errors may appear.
This has been updated to use SHA256 certificates.
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
FROM ubuntu | |
RUN apt-get update -y | |
RUN apt-get install -y gcc | |
RUN gcc -o /src/myapp /src/myapp.c | |
IN /target { | |
FROM busybox | |
ENTRYPOINT /myapp | |
} | |
RUN cp /src/myapp /target/myapp | |
PUBLISH /target |
Matthew Riley ([email protected])
This document summarizes the interactions between the Docker client and the Docker Hub during push
and pull
commands through version 1 of the registry API. It was compiled to aid in writing a compatible registry server implementation after the existing API documentation proved occasionally incomplete or inaccurate.
Behavior and code links were as of Docker v1.2.0.
docker {push|pull} H:P/R[:T]
Host, Port, Repository ([namespace/]image), Tag
git clone https://gist.github.com/dd6f95398c1bdc9f1038.git vault
cd vault
docker-compose up -d
export VAULT_ADDR=http://192.168.99.100:8200
Initializing a vault:
vault init
There are two types of markup in Liquid: Output and Tag.
{{ matched pairs of curly brackets (ie, braces) }}
The DHCP driver is intended for users to be able to integrate Docker IP address management with their existing IPAM strategies that use DHCP for dynamic address assignment. DHCP enables users to allocate addresses in an organized fashion that will prevent overlapping IP address assignment by associating a unique MAC address from the container eth0
Ethernet interface to an IP address as determined by the DHCP pools defined in the DHCP configuration.
This driver only provides the DHCP client functionality. It does not include a DHCP server. The default driver offers single-host IPAM or for distributed multi-host orchestrated IPAM see the libnetwork overlay driver.
Top changeset contributors by employer | |
Docker 7107 (49.2%) | |
(Unknown) 4670 (32.3%) | |
Red Hat 855 (5.9%) | |
IBM 607 (4.2%) | |
Microsoft 525 (3.6%) | |
Huawei 511 (3.5%) | |
Google 127 (0.9%) | |
Cisco 39 (0.3%) |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
// Name of the struct tag used in examples | |
const tagName = "validate" |