├── LICENSE ├── bin ├── docker-wrapper ├── dockerd-wrapper └── help ├── patches ├── snappy-apparmor-tweaks.patch ├── snappy-etc-apparmor-d.patch ├── snappy-etc-docker.patch ├── snappy-real-chroot.patch └── snappy-socket-group.patch ├── prep-docker-build.sh └── snap ├── plugins ├── x-gobuild.py ├── x-gobuild.yaml └── x-shell.py └── snapcraft.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/docker-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/bin/docker-wrapper -------------------------------------------------------------------------------- /bin/dockerd-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/bin/dockerd-wrapper -------------------------------------------------------------------------------- /bin/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/bin/help -------------------------------------------------------------------------------- /patches/snappy-apparmor-tweaks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/patches/snappy-apparmor-tweaks.patch -------------------------------------------------------------------------------- /patches/snappy-etc-apparmor-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/patches/snappy-etc-apparmor-d.patch -------------------------------------------------------------------------------- /patches/snappy-etc-docker.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/patches/snappy-etc-docker.patch -------------------------------------------------------------------------------- /patches/snappy-real-chroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/patches/snappy-real-chroot.patch -------------------------------------------------------------------------------- /patches/snappy-socket-group.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/patches/snappy-socket-group.patch -------------------------------------------------------------------------------- /prep-docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/prep-docker-build.sh -------------------------------------------------------------------------------- /snap/plugins/x-gobuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/snap/plugins/x-gobuild.py -------------------------------------------------------------------------------- /snap/plugins/x-gobuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/snap/plugins/x-gobuild.yaml -------------------------------------------------------------------------------- /snap/plugins/x-shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/snap/plugins/x-shell.py -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-snap/docker/HEAD/snap/snapcraft.yaml --------------------------------------------------------------------------------