Commit Graph
3869 Commits
Author SHA1 Message Date
Solomon Hykes 3f5ac0b977 Simplified the core container API, ported it to the new graph. Some features are missing eg. image 'paths' and tags
Upstream-commit: 7c57a4cfc086b4af68ed9ec7c1b03b934db61f0c
Component: engine
2013-03-21 00:25:00 -07:00
Solomon Hykes 062aedd0cc Fixed a bug in graph.Graph.Get()
Upstream-commit: 84e8c4aa1df8f6f53d1c688a0e2bfc5b4d46adef
Component: engine
2013-03-21 00:21:32 -07:00
Solomon Hykes 49a6499905 Removed redundant mount_test.go (graph_test.go already tests the mount ability)
Upstream-commit: 89a140fb75b328b3c2869464a5d9880082966b55
Component: engine
2013-03-21 00:21:03 -07:00
Guillaume J. Charmes f6ae897923 Merge pull request #122 from srid/patch-1
remove ! from command line
Upstream-commit: 3e9877a30fdc3ad7139ee0e8f01d74034b69dd56
Component: engine
2013-03-20 23:26:50 -07:00
Sridhar Ratnakumar 232f5ef62c remove ! from command line
bash does not like it

```
$ JOB=$(docker run base /bin/sh -c "while true; do echo Hello world!; sleep 1; done")
bash: !: event not found
$
```
Upstream-commit: 3bb176d8ae7f43ab0d1ca8e03b59f2f137f07530
Component: engine
2013-03-20 22:53:42 -07:00
Solomon Hykes 987e23be65 Pruned more semi-useless commands: 'docker cat', 'docker cp', 'docker ls', 'docker write'. Removed outdated commands from help message
Upstream-commit: 34023558f5a37e441e39f003cdc4ad6736f38c5a
Component: engine
2013-03-20 22:48:52 -07:00
Solomon Hykes cd1b34d27f Removed anal warning from 'go vet'
Upstream-commit: 9d82bab041370cd26e78fe85ee5435c8b2429b59
Component: engine
2013-03-20 22:42:50 -07:00
Solomon Hykes 8af959ad36 Removed dependency on the fake package in graph unit tests
Upstream-commit: 3eff62394bf11f579552114ce6157675acbd6d25
Component: engine
2013-03-20 22:42:08 -07:00
Solomon Hykes 9bb9143755 Removed extra import
Upstream-commit: 4d9c324495babc175db278fdbe39d291eaf25726
Component: engine
2013-03-20 22:41:31 -07:00
Solomon Hykes 2e486fab8a Unmount() and Mounted(): utility functions to unmount a mountpoint and check if it's mounted, respectively
Upstream-commit: 75c866d6a3aa92d5d2a4e6948fff00f90b36e872
Component: engine
2013-03-20 22:41:03 -07:00
Solomon Hykes 479b507538 Removed mount code from container. It belongs in graph
Upstream-commit: 6f6eaca861fec53a6d21d420b813041dc93e8b93
Component: engine
2013-03-20 22:16:02 -07:00
Solomon Hykes 7eb24c3b20 docker/fs is deprecated by docker/graph
Upstream-commit: ea258c44926e8a8d7a49cedd90922d29185df573
Component: engine
2013-03-20 22:15:09 -07:00
Solomon Hykes 2fda36d87e Removed Image.Unmount(). It belongs in container code
Upstream-commit: 240333277afb733af353e21dd3066c547da05b8a
Component: engine
2013-03-20 22:13:57 -07:00
Solomon Hykes 183c61602f Image.Mount(): create rw and rootfs directory if they don't exist
Upstream-commit: 9e8278134d73ffa0a4e72c2202aa1e5c2bcffc98
Component: engine
2013-03-20 22:13:28 -07:00
Solomon Hykes 2b5ac9ec99 Image.Changes(): list all changes between an image and a rw directory
Upstream-commit: c8db980add4cdc9546a7e38dba264f6862662f15
Component: engine
2013-03-20 22:12:38 -07:00
Guillaume J. Charmes 5faab73423 Merge pull request #121 from ezbercih/patch-1
Fix issue #120, initialize TCPAddr w/ field names
Upstream-commit: 3f63e3426e900559e85f7517f1c72f745121cce7
Component: engine
2013-03-20 20:25:16 -07:00
Solomon Hykes 6702dd2069 Removed deprecated or useless commands (cp, layers, reset, mirror, debug, web)
Upstream-commit: 31296cc3f72cd98cbab8c33b2b1d3ea2d46be725
Component: engine
2013-03-20 20:21:59 -07:00
Solomon Hykes 9ee419103c Merge pull request #115 from termie/readme_update
update the dependencies for the dev environment
Upstream-commit: 33d2905cde5fe0745c5aef36e8ee52d35f04ae4b
Component: engine
2013-03-20 15:20:18 -07:00
termie c23224aff0 update the dev requirements in readme
a little pedantic, perhaps, but on a fresh precise image from vagrant I
still needed these two packages to run the commands following it
Upstream-commit: 2048354c8b72feb35eaa53dcc29e78a111e69cfb
Component: engine
2013-03-20 20:17:46 +00:00
Solomon Hykes 4f0f659b37 Merge branch 'master' into graph
Upstream-commit: 98542d44979495d69c98befc44e3ac0135193a66
Component: engine
2013-03-20 09:41:37 -07:00
shin- 786ef6aa6a Removed 'fake' package.
Upstream-commit: 6d580247c27da7cddcc6a582b846b1e8bd5bc0d6
Component: engine
2013-03-20 07:49:38 -07:00
creack 21dbee3159 Complete pull request #121, init TCPAddr with named field
Upstream-commit: ab99e9252d1d3872b2e04234338ce028b9eb091c
Component: engine
2013-03-20 06:02:25 -07:00
ezbercih 2de0bdf328 Fix issue #120, initialize TCPAddr w/ field names
Current Go tip (+74e65f07a0c8) and likely Go 1.1 does not build docker since net.TCPAddr struct has an additional field now for IPv6:

type TCPAddr struct {
    IP   IP
    Port int
    Zone string // IPv6 scoped addressing zone
}

Initializing the struct with named fields resolves this problem.
Upstream-commit: fac32cda5af7adcf0400f1fd8763764a498149f3
Component: engine
2013-03-21 00:11:16 -03:00
Solomon Hykes 1ede90c17e Merge pull request #114 from jpetazzo/whiteboard20130319
Images & repositories, what they mean, and the protocol to push/pull them
Upstream-commit: a3174fd87454e3c2c66433505e3bc4c9f468fbdb
Component: engine
2013-03-20 00:18:43 -07:00
Solomon Hykes dfd3b1b7c3 Merge pull request #112 from srid/devenv
instructions to compile docker
Upstream-commit: ddf4c79977c77f56a0bf1c5ca8350eed1a619a4e
Component: engine
2013-03-20 00:08:54 -07:00
Jérôme Petazzoni 20a4d31ad9 add pseudo-spec of images, repositories, push, and pull operations
Upstream-commit: acd51ecea8f5d3c02b00a08176171c59442df8b3
Component: engine
2013-03-19 20:35:14 -07:00
Sridhar Ratnakumar 3173c6dc8b instructions to compile docker
Upstream-commit: 4389574aff5abc1dd49313ca5217f81210568ed9
Component: engine
2013-03-19 20:17:32 -07:00
Solomon Hykes 461e1a5b07 Merge pull request #110 from synack/master
Add linux-image-extra instructions to README
Upstream-commit: ff2ae90764ccd562ba3c3943e35b9a66fa405c23
Component: engine
2013-03-19 18:46:28 -07:00
Jeremy Grosser 5537bf1f7e Update README.md
Upstream-commit: 2508b5cef9c5609d72ed9f2016d4cd3906429f20
Component: engine
2013-03-19 18:45:11 -07:00
Solomon Hykes 0c37dfb111 Merge pull request #106 from kencochrane/users
change registry address to https from http
Upstream-commit: b1acd0a7b0513b31253195fc94e5d8a92b10ebe6
Component: engine
2013-03-19 17:42:29 -07:00
Ken Cochrane a3b5b5979f change registry address to https from http
Upstream-commit: 8be58d3a7f6020fe34281dbe27375005e248f0f5
Component: engine
2013-03-19 16:03:17 -07:00
Solomon Hykes 5c00b7d3b2 Merge pull request #102 from fkautz/master
Some minor cleanup of cleanup in Makefile
Upstream-commit: c5051ea0ea506e375a85f66ad5bd0666deabfcc6
Component: engine
2013-03-19 10:07:21 -07:00
Solomon Hykes 820f97f5c8 Ported test for image deletion
Upstream-commit: 3c1db4ca43ecd741c50e884c2ea3aac43e3191e1
Component: engine
2013-03-18 17:57:18 -07:00
Solomon Hykes 56cbe57711 Bumped version to 0.0.3
Upstream-commit: 33c2f07fc7b2d132e1f7cd30a37717ed15c086bd
Component: engine
2013-03-18 00:35:48 -07:00
Solomon Hykes 9cae75046a docker/graph: a store for filesystem images and the graph of their relationships
Upstream-commit: 33f6a0aaf58734f39af564123ca2c0056a3f1bd4
Component: engine
2013-03-18 00:15:35 -07:00
Solomon Hykes a7be65df70 Contributing to Docker
Upstream-commit: 1480bff3a9149eb34b64e4f2d7d3a727298c640b
Component: engine
2013-03-17 19:32:06 -07:00
Solomon Hykes 9c82c0dd2d Moved Ubuntu install to the top
Upstream-commit: ac7fa37be3ac073f3ecb6df835c32c6dcbe53805
Component: engine
2013-03-17 19:10:47 -07:00
Solomon Hykes 6060102aff Docker: the Linux container runtime
Upstream-commit: 065eca9d4e4dd145b070786e4b497512bd659b58
Component: engine
2013-03-17 19:09:51 -07:00
Frederick F. Kautz IV f29884b197 Adding clean to beginning of all for cleaner builds.
Upstream-commit: 6316b995564f1ffcd614402489ed4b929ac26f74
Component: engine
2013-03-17 11:59:59 -07:00
Frederick F. Kautz IV 114ab0aeec Adding bin to clean
Upstream-commit: bb9ce6b2872b62b444306c53d0fa26d389d9a9d9
Component: engine
2013-03-17 11:54:05 -07:00
Frederick F. Kautz IV 328d42c651 Makefile cleanup renamed to clean to match standard conventions.
Upstream-commit: a3ca3e921802b1979c14174c352320e45b3251e6
Component: engine
2013-03-17 11:53:37 -07:00
Solomon Hykes b86522f19c Removed out-of-date examples directory (see README and the wiki for examples)
Upstream-commit: a030c1bd2465b636bb08e85d4f9911f44076612f
Component: engine
2013-03-16 18:36:52 -07:00
Solomon Hykes c073c8381c Removed redundant file used by debian packaging
Upstream-commit: 4a1c40364c9c93d1168a159fefad1566f31e02cd
Component: engine
2013-03-16 18:35:43 -07:00
Solomon Hykes 9eb43bda41 Merge pull request #101 from silas/examples
Fix docker run typo
Upstream-commit: 4015f8dd34ebf860560e94ec78930a1319bc128f
Component: engine
2013-03-16 18:32:26 -07:00
Silas Sewell 329be44b1c Fix docker run typo
Upstream-commit: 16f132b156f7d6827fbd0b43364661f0dea7497a
Component: engine
2013-03-16 16:16:13 -04:00
Solomon Hykes 8c166ebfd2 Merge pull request #100 from silas/readme
Fix coffee typo
Upstream-commit: b400d78b19ee81752680fe0d5d41596bf527b110
Component: engine
2013-03-16 12:35:43 -07:00
Silas Sewell 7fe15e6eda Fix coffee typo
Upstream-commit: e190c27d10034d4c4ee286839351876bb4ec8dc2
Component: engine
2013-03-16 15:19:58 -04:00
Solomon Hykes 0add032982 Removed unnecessary step in the README
Upstream-commit: da47420af67aa4faab95f3f7e5de8378905ec429
Component: engine
2013-03-16 11:39:49 -07:00
Solomon Hykes 700dcf9da6 Merge pull request #84 from kencochrane/users
added docker login command to login to docker registry
Upstream-commit: b55e461122693a000ce2e06ae5623c7acc607c4a
Component: engine
2013-03-16 02:14:07 -07:00
Ken Cochrane b985acb966 added better error message
Upstream-commit: c4640689affc84c5a975059c5fca27a8b22bd1d0
Component: engine
2013-03-15 15:04:36 -07:00