moby--moby/daemon
Don Kjer 568f86eb18 Deprecating ResolveRepositoryName
Passing RepositoryInfo to ResolveAuthConfig, pullRepository, and pushRepository

Moving --registry-mirror configuration to registry config

Created resolve_repository job

Repo names with 'index.docker.io' or 'docker.io' are now synonymous with omitting an index name.

Adding test for RepositoryInfo

Adding tests for opts.StringSetOpts and registry.ValidateMirror

Fixing search term use of repoInfo

Adding integration tests for registry mirror configuration

Normalizing LookupImage image name to match LocalName parsing rules

Normalizing repository LocalName to avoid multiple references to an official image

Removing errorOut use in tests

Removing TODO comment

gofmt changes

golint comments cleanup.  renaming RegistryOptions => registry.Options, and RegistryServiceConfig => registry.ServiceConfig

Splitting out builtins.Registry and registry.NewService calls

Stray whitespace cleanup

Moving integration tests for Mirrors and InsecureRegistries into TestNewIndexInfo unit test

Factoring out ValidateRepositoryName from NewRepositoryInfo

Removing unused IndexServerURL

Allowing json marshaling of ServiceConfig.  Exposing ServiceConfig in /info

Switching to CamelCase for json marshaling

PR cleanup; removing 'Is' prefix from boolean members.  Removing unneeded json tags.

Removing non-cleanup related fix for 'localhost:[port]' in splitReposName

Merge fixes for gh9735

Fixing integration test

Reapplying #9754

Adding comment on config.IndexConfigs use from isSecureIndex

Remove unused error return value from isSecureIndex

Signed-off-by: Don Kjer <don.kjer@gmail.com>

Adding back comment in isSecureIndex

Signed-off-by: Don Kjer <don.kjer@gmail.com>
2015-01-08 20:14:58 +00:00
..
execdriver LXC TEMPLATE ALLOWS IPV4 OVERRIDE 2014-12-25 20:06:59 +00:00
graphdriver Merge pull request #8748 from duglin/Issue8330 2015-01-06 13:47:42 -08:00
networkdriver Tidy driver.go/LinkContainers 2014-12-21 13:42:02 +10:00
MAINTAINERS Adding Vish as a maintainer for daemon code. 2014-11-12 22:55:32 +00:00
README.md Add readme for daemon directory 2014-05-17 17:56:02 +00:00
attach.go Use waitgroup instead of iterating errors chan 2015-01-05 18:01:13 -08:00
changes.go Move "changes" to daemon/changes.go 2014-08-01 14:24:46 -04:00
commit.go Make `FROM scratch` a special cased 'no-base' spec 2014-12-18 14:03:38 -08:00
config.go Deprecating ResolveRepositoryName 2015-01-08 20:14:58 +00:00
container.go Merge pull request #8748 from duglin/Issue8330 2015-01-06 13:47:42 -08:00
container_unit_test.go Ensure container names start with a-zA-Z0-9 2014-09-12 10:45:07 -07:00
copy.go Move "copy" to daemon/copy.go 2014-08-01 14:24:41 -04:00
create.go Merge pull request #9603 from hqhq/hq_add_memory_swap 2015-01-06 10:09:21 -08:00
daemon.go Deprecating ResolveRepositoryName 2015-01-08 20:14:58 +00:00
daemon_aufs.go Mass gofmt 2014-10-24 15:11:48 -07:00
daemon_btrfs.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
daemon_devicemapper.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
daemon_no_aufs.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
daemon_overlay.go Remove the last references to overlayfs 2014-12-03 14:06:19 +01:00
daemon_unit_test.go Move security opts to HostConfig 2014-11-25 01:02:30 +02:00
delete.go Error should be 409 as the container is different state to remove 2014-12-19 19:00:28 +00:00
exec.go Merge pull request #9858 from jfrazelle/exec-buildtag 2015-01-06 10:26:21 -08:00
export.go Separate events subsystem 2014-08-06 10:08:19 +00:00
history.go don't call sort for every add in history 2014-05-14 15:02:02 +03:00
image_delete.go Make `FROM scratch` a special cased 'no-base' spec 2014-12-18 14:03:38 -08:00
info.go Deprecating ResolveRepositoryName 2015-01-08 20:14:58 +00:00
inspect.go add ExecIDs in inspect 2014-12-23 22:03:20 +00:00
kill.go Separate events subsystem 2014-08-06 10:08:19 +00:00
list.go Make `FROM scratch` a special cased 'no-base' spec 2014-12-18 14:03:38 -08:00
logs.go Fix panic on slow log consumer. 2014-10-30 22:24:57 +02:00
monitor.go restart: Fix an error about arguments missing 2015-01-06 12:25:39 +08:00
network_settings.go Support for consistent MAC address. 2014-10-03 13:22:38 -07:00
pause.go Separate events subsystem 2014-08-06 10:08:19 +00:00
resize.go Splitting the exec remote API into two separate APIs inorder to support resizing of tty sessions. 2014-09-15 22:56:47 +00:00
restart.go Separate events subsystem 2014-08-06 10:08:19 +00:00
start.go Fix race condition between parseSecurityOpt and container.Mount 2014-12-11 17:22:59 -08:00
state.go Address comments. 2014-11-08 00:14:08 +00:00
state_test.go Fix vet errors about unkeyed fields 2014-12-12 10:44:59 -08:00
stop.go Use State as embedded to Container 2014-09-03 00:01:11 +04:00
top.go Use State as embedded to Container 2014-09-03 00:01:11 +04:00
utils.go User should get error message on wrong config 2014-12-09 21:52:07 +00:00
utils_linux.go --selinux-enabled flag should be ignored on Disabled SELinux systems 2014-09-23 13:21:25 -04:00
utils_nolinux.go --selinux-enabled flag should be ignored on Disabled SELinux systems 2014-09-23 13:21:25 -04:00
utils_test.go Fix vet errors about formatting directives 2014-12-12 10:58:56 -08:00
volumes.go Fix volumes-from/bind-mounts passed in on start 2014-12-15 16:51:15 -05:00
wait.go Fix container wait error message to match server template for returning 404 2014-09-19 13:33:00 -04:00

README.md

This directory contains code pertaining to running containers and storing images

Code pertaining to running containers:

  • execdriver
  • networkdriver

Code pertaining to storing images:

  • graphdriver