├── .gitignore ├── LICENSE ├── README.md ├── alpine └── config.json ├── busybox └── config.json ├── chrome └── config.json ├── debian └── config.json ├── hack └── scripts │ ├── add-host │ ├── get-rootfs │ ├── remove-host │ ├── strace-process │ └── update-all-rootfs ├── hollywood └── config.json ├── htop └── config.json ├── irssi └── config.json ├── mitmproxy └── config.json ├── nginx └── config.json ├── pulseaudio └── config.json ├── rainbowstream └── config.json ├── redis └── config.json ├── remmina └── config.json ├── runc@.service ├── skype └── config.json ├── spotify └── config.json ├── tor-browser └── config.json ├── tor-proxy └── config.json ├── traceroute └── config.json ├── transmission └── config.json ├── virtualbox ├── config.json ├── load_kernel_modules.sh └── runtime.json └── vlc └── config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/README.md -------------------------------------------------------------------------------- /alpine/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/alpine/config.json -------------------------------------------------------------------------------- /busybox/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/busybox/config.json -------------------------------------------------------------------------------- /chrome/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/chrome/config.json -------------------------------------------------------------------------------- /debian/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/debian/config.json -------------------------------------------------------------------------------- /hack/scripts/add-host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/hack/scripts/add-host -------------------------------------------------------------------------------- /hack/scripts/get-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/hack/scripts/get-rootfs -------------------------------------------------------------------------------- /hack/scripts/remove-host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/hack/scripts/remove-host -------------------------------------------------------------------------------- /hack/scripts/strace-process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/hack/scripts/strace-process -------------------------------------------------------------------------------- /hack/scripts/update-all-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/hack/scripts/update-all-rootfs -------------------------------------------------------------------------------- /hollywood/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/hollywood/config.json -------------------------------------------------------------------------------- /htop/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/htop/config.json -------------------------------------------------------------------------------- /irssi/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/irssi/config.json -------------------------------------------------------------------------------- /mitmproxy/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/mitmproxy/config.json -------------------------------------------------------------------------------- /nginx/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/nginx/config.json -------------------------------------------------------------------------------- /pulseaudio/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/pulseaudio/config.json -------------------------------------------------------------------------------- /rainbowstream/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/rainbowstream/config.json -------------------------------------------------------------------------------- /redis/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/redis/config.json -------------------------------------------------------------------------------- /remmina/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/remmina/config.json -------------------------------------------------------------------------------- /runc@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/runc@.service -------------------------------------------------------------------------------- /skype/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/skype/config.json -------------------------------------------------------------------------------- /spotify/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/spotify/config.json -------------------------------------------------------------------------------- /tor-browser/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/tor-browser/config.json -------------------------------------------------------------------------------- /tor-proxy/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/tor-proxy/config.json -------------------------------------------------------------------------------- /traceroute/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/traceroute/config.json -------------------------------------------------------------------------------- /transmission/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/transmission/config.json -------------------------------------------------------------------------------- /virtualbox/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/virtualbox/config.json -------------------------------------------------------------------------------- /virtualbox/load_kernel_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/virtualbox/load_kernel_modules.sh -------------------------------------------------------------------------------- /virtualbox/runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/virtualbox/runtime.json -------------------------------------------------------------------------------- /vlc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessfraz/containers/HEAD/vlc/config.json --------------------------------------------------------------------------------