Alexander Morozov 95c0f07966 Merge pull request #10093 from crosbymichael/readonly-containers 10 years ago
..
execdriver 95c0f07966 Merge pull request #10093 from crosbymichael/readonly-containers 10 years ago
graphdriver bb96e53b0f Fix vet error about passing Mutex by value 10 years ago
networkdriver 813ff7f19d Adding IPv6 network support to docker 10 years ago
MAINTAINERS 06bf79552d Adding Vish as a maintainer for daemon code. 10 years ago
README.md b175b4dd43 Add readme for daemon directory 11 years ago
attach.go 28cf8fddd4 Fix attach stream closing issues 10 years ago
changes.go 49e61f62ce Move "changes" to daemon/changes.go 11 years ago
commit.go 8936789919 Make `FROM scratch` a special cased 'no-base' spec 10 years ago
config.go 813ff7f19d Adding IPv6 network support to docker 10 years ago
container.go 409407091a Add --readonly for read only container rootfs 10 years ago
container_unit_test.go aa2af817be Ensure container names start with a-zA-Z0-9 11 years ago
copy.go 06229a4b76 Move "copy" to daemon/copy.go 11 years ago
create.go 23feaaa240 Allow the container to share the PID namespace with the host 10 years ago
daemon.go 37b69408f8 Merge pull request #10056 from coolljt0725/add_link_accept_ID 10 years ago
daemon_aufs.go ee7dd44c01 Mass gofmt 10 years ago
daemon_btrfs.go b3ee9ac74e update go import path and libcontainer 11 years ago
daemon_devicemapper.go b3ee9ac74e update go import path and libcontainer 11 years ago
daemon_no_aufs.go b3ee9ac74e update go import path and libcontainer 11 years ago
daemon_overlay.go 2352f00e4f Remove the last references to overlayfs 10 years ago
daemon_unit_test.go 294843ef23 Move security opts to HostConfig 10 years ago
delete.go 6599aa3368 Error should be 409 as the container is different state to remove 10 years ago
exec.go a33f7a07d1 Merge pull request #9858 from jfrazelle/exec-buildtag 10 years ago
export.go 8d056423f8 Separate events subsystem 11 years ago
history.go e963179c79 don't call sort for every add in history 11 years ago
image_delete.go 8936789919 Make `FROM scratch` a special cased 'no-base' spec 10 years ago
info.go 568f86eb18 Deprecating ResolveRepositoryName 10 years ago
inspect.go 4b43a6df7a add ExecIDs in inspect 10 years ago
kill.go 8d056423f8 Separate events subsystem 11 years ago
list.go 3ec6959240 Merge pull request #9985 from jfrazelle/fix-exited-filter-should-not-show-running 10 years ago
logs.go c2cf97a074 Fix panic on slow log consumer. 10 years ago
monitor.go e721ed9b53 restart: Fix the compare of restart policy 10 years ago
network_settings.go 813ff7f19d Adding IPv6 network support to docker 10 years ago
pause.go 8d056423f8 Separate events subsystem 11 years ago
rename.go a92281637f Renaming a container with an invalid name should fail 10 years ago
resize.go bfebdfde78 Splitting the exec remote API into two separate APIs inorder to support resizing of tty sessions. 11 years ago
restart.go 8d056423f8 Separate events subsystem 11 years ago
start.go 862952c8d4 Fix race condition between parseSecurityOpt and container.Mount 10 years ago
state.go 46f2944977 Address comments. 10 years ago
state_test.go e7d086c2be Fix vet errors about unkeyed fields 10 years ago
stop.go e0339d4b88 Use State as embedded to Container 11 years ago
top.go e0339d4b88 Use State as embedded to Container 11 years ago
utils.go 8dcbd6ab63 User should get error message on wrong config 10 years ago
utils_linux.go 9e2eb0f1cc --selinux-enabled flag should be ignored on Disabled SELinux systems 11 years ago
utils_nolinux.go 9e2eb0f1cc --selinux-enabled flag should be ignored on Disabled SELinux systems 11 years ago
utils_test.go 63a7ccdd23 Update container resolv.conf when host network changes /etc/resolv.conf 10 years ago
volumes.go d44c9f9147 Fix volumes-from/bind-mounts passed in on start 10 years ago
wait.go be6bce6ab8 Fix container wait error message to match server template for returning 404 11 years ago

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