View docker-from-chromeos.sh
#!/bin/sh | |
## Requires custom kernel to be installed in Chrome OS | |
## Copies files from my archlinux chroot into a temp folder and runs docker from there. | |
## Running this on boot of Chrome OS so my version of the docker daemon is upgraded by | |
## pacman in the chroot. | |
set -e | |
chroot=/usr/local/chroots/arch | |
run=/usr/local/tmp/docker |