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
$ docker images ubuntu | |
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE | |
ubuntu saucy 43461fe97ba1 20 hours ago 144.6 MB | |
ubuntu raring 5e94ff221e91 20 hours ago 133.6 MB | |
ubuntu quantal 3e47bae8d07a 20 hours ago 127.6 MB | |
ubuntu lucid 04180f9bd8a6 20 hours ago 139.6 MB | |
ubuntu precise 1e548c932d40 20 hours ago 125.9 MB | |
ubuntu 12.04 8dbd9e392a96 9 months ago 128 MB | |
ubuntu latest 8dbd9e392a96 9 months ago 128 MB | |
ubuntu 12.10 b750fe79269d 10 months ago 175.3 MB |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 3.12.9-gentoo Kernel Configuration | |
# | |
# | |
# Gentoo Linux | |
# | |
CONFIG_GENTOO_LINUX=y | |
CONFIG_GENTOO_LINUX_UDEV=y |
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
root@58a79975c52d:/# apt-get update | |
Get:1 http://http.debian.net sid InRelease [205 kB] | |
Get:2 http://http.debian.net sid/main amd64 Packages/DiffIndex [7876 B] | |
Get:3 http://http.debian.net sid/main amd64 2014-01-29-2048.00.pdiff [12.8 kB] | |
Get:4 http://http.debian.net sid/main amd64 2014-01-30-0248.25.pdiff [7442 B] | |
Get:5 http://http.debian.net sid/main amd64 2014-01-30-0848.01.pdiff [2746 B] | |
Get:6 http://http.debian.net sid/main amd64 2014-01-30-1443.21.pdiff [21.4 kB] | |
Get:7 http://http.debian.net sid/main amd64 2014-01-30-2048.10.pdiff [7342 B] | |
Get:8 http://http.debian.net sid/main amd64 2014-01-31-0246.50.pdiff [5433 B] | |
Get:9 http://http.debian.net sid/main amd64 2014-01-31-0844.47.pdiff [2125 B] |
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
randinit: randinit.go | |
go build -o $@ -ldflags -d $< |
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
package netlink | |
// #include <net/if.h> | |
import "C" | |
import ( | |
"syscall" | |
"unsafe" | |
) |
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
#!/usr/bin/perl | |
# Author: Todd Larason <[email protected]> | |
# $XFree86: xc/programs/xterm/vttests/256colors2.pl,v 1.1 1999/07/11 08:49:54 dawes Exp $ | |
# use the resources for colors 0-15 - usually more-or-less a | |
# reproduction of the standard ANSI colors, but possibly more | |
# pleasing shades | |
# colors 16-231 are a 6x6x6 color cube | |
for ($red = 0; $red < 6; $red++) { |
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
package main | |
type SomeSqlRelatedStruct struct { | |
SomeValue int `magicsql:"MyDatabaseIntField"` | |
SomeValueThatComesFromSql *string `magicsql:"( | |
SELECT 'some magic subselect' | |
FROM someothertable | |
WHERE MainId = MyDatabaseIntField | |
)"` | |
} |
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
{ echo 'FROM debian'; echo 'RUN apt-get update'; } | perl -w -MArchive::Tar -e 'my $tar = Archive::Tar->new; { local $/; $tar->add_data("Dockerfile", <>); } print $tar->write' | curl --data-binary @- --header 'Content-Type: application/x-tar' --dump-header - --no-buffer 'http://localhost:4243/build?rm=1&nocache=1' |
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
FROM busybox | |
RUN echo -n '[ ] testing...' && sleep 5 && echo -e 'done.\r[✓]' |
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
$ docker build --rm - | |
FROM busybox | |
RUN true | |
RUN true | |
RUN true | |
RUN false | |
<Ctrl+D> | |
Uploading context 2.048 kB | |
Uploading context | |
Step 0 : FROM busybox |