- The build will be vendored into github.com/docker/docker in the next few days. In the meantime here is the binary that will be getting vendored. docker-1.11.0-dev.zip
- Ipvlan L2 mode network with multiple subnets without a parent specified
- For a long test that will create 54 networks and 120+ containers, then delete them all and recreate them again try ipvlan-macvlan-it.sh Instructions here Docker Macvlan and Ipvlan Manual IT Test
- FYI Note: When the parent is empty or the
--internalflag is used, a linux typedummyinterface is dynamically created by Libnetwork to act as the parent. This network is completely isolated and is the equivalent to a--internalflag. This is a good mode for demoing. - The first test requires an interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Prerequisites: http://wiki.openwrt.org/doc/howto/buildroot.exigence | |
| # Additionally JDK is needed | |
| generate_buildenv() { | |
| # Prepare build enviroment | |
| mkdir openwrt_build | |
| cd openwrt_build | |
| git clone --depth=1 git://git.openwrt.org/15.05/openwrt.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [apply] | |
| whitespace = nowarn | |
| [user] | |
| name = Chen Bin | |
| email = cb@myemail.com | |
| [core] | |
| # @see http://comments.gmane.org/gmane.comp.version-control.git/166098 | |
| filemode = true | |
| ignorecase = false | |
| autocrlf = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * unformat method: reverse formatting | |
| * @author Markus J Doetsch markus.doetsch@rocket-internet.de | |
| */ | |
| window.unformat = function (formatting, val) { | |
| "use strict"; | |
| // only work with (formatted) strings | |
| if (typeof val !== 'string') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath 'com.android.tools.build:gradle:0.5.6' | |
| } | |
| } | |
| task wrapper(type: Wrapper) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public partial class MainWindow : Window | |
| { | |
| public MainWindow() | |
| { | |
| InitializeComponent(); | |
| Mouse.OverrideCursor = CreateCursor(50,50, Brushes.Gold, null); | |
| } | |
| Cursor CreateCursor(double rx, double ry, SolidColorBrush brush, Pen pen) |
NewerOlder