moby--moby/daemon
Dan Walsh b4813f2841 Docker should use /var/lib/container/tmp for large temporary files.
/tmp is often a tmpfs file system and large temporary files could cause
docker commands to fail.  Also using /tmp potentially allows users on the
system to get access to content, or even attack the content.  Moving the tmpdir to
/var/lib/container/tmp will protect the data.

Docker-DCO-1.1-Signed-off-by: Dan Walsh <dwalsh@redhat.com> (github: rhatdan)

Conflicts:
	docker/docker.go
2014-08-05 16:43:42 -04:00
..
execdriver Purge the bits of pkg/system that moved to libcontainer/system 2014-08-02 01:35:04 -06:00
graphdriver Move parsing functions to pkg/parsers and the specific kernel handling 2014-07-29 13:09:10 -07:00
networkdriver Merge pull request #7100 from discordianfish/fix-port-allocation 2014-07-30 23:51:21 +03:00
MAINTAINERS Add cpuguy83 as volumes maintainer 2014-06-20 09:40:29 -04:00
README.md Add readme for daemon directory 2014-05-17 17:56:02 +00:00
attach.go Move Server.ContainerAttach to Daemon.ContainerAttach 2014-07-30 11:20:31 +00:00
changes.go Move "changes" to daemon/changes.go 2014-08-01 14:24:46 -04:00
commit.go Move "commit" to daemon/commit.go 2014-08-01 14:17:24 -04:00
container.go Add support for autodetected HOME from USER (if HOME is unset) 2014-07-31 12:46:36 -06:00
container_unit_test.go Added test cases for no port passed to nat.ParsePortSpecs and negative port number passed 2014-08-01 23:41:34 +05:30
copy.go Move "copy" to daemon/copy.go 2014-08-01 14:24:41 -04:00
create.go Move "create" to daemon/create.go 2014-08-01 14:16:50 -04:00
daemon.go Docker should use /var/lib/container/tmp for large temporary files. 2014-08-05 16:43:42 -04:00
daemon_aufs.go update go import path and libcontainer 2014-07-24 22:19:50 +00: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
delete.go Move "delete" to daemon/delete.go 2014-08-01 14:24:28 -04:00
export.go Move "export" to daemon/export.go 2014-08-01 14:16:41 -04:00
history.go
inspect.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
kill.go Move "kill" to daemon/kill.go 2014-08-01 14:16:05 -04:00
list.go Move "containers" to daemon/list.go 2014-08-01 14:24:58 -04:00
logs.go Move "logs" to daemon/logs.go 2014-08-01 14:17:29 -04:00
network_settings.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
pause.go Move "unpause" to daemon/pause.go 2014-07-30 14:01:43 +00:00
resize.go Move "resize" to daemon/resize.go 2014-08-01 14:17:20 -04:00
restart.go Move "restart" to daemon/restart.go 2014-08-01 14:17:11 -04:00
server.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
start.go Move "start" to daemon/start.go 2014-08-01 14:17:04 -04:00
state.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
state_test.go State refactoring and add waiting functions 2014-06-27 15:05:48 +04:00
stop.go Move "stop" to daemon/stop.go 2014-08-01 14:16:59 -04:00
top.go Move "top" to daemon/top.go 2014-08-01 14:24:52 -04:00
utils.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
utils_linux.go Fix cross compile non cgo and linux systems 2014-07-16 16:57:49 -07:00
utils_nolinux.go Fix cross compile non cgo and linux systems 2014-07-16 16:57:49 -07:00
utils_test.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
volumes.go update go import path and libcontainer 2014-07-24 22:19:50 +00:00
wait.go Move "wait" to daemon/wait.go 2014-08-01 14:17:16 -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