## # Yocto Project Dev Day Prague 2017 # crops session (toaster) # Tim Orling # # These instructions are specifically tailored for Mac OS X # Windows and Linux will differ # # download Docker container docker pull crops/toaster-master # create volume docker volume create --name myvol # set proper permissions docker run -it --rm -v myvol:/wd busybox chown -R 1000:1000 /wd # run the samba container docker run --rm -it -v myvol:/wd -p 127.0.0.1:12000:8000 crops/toaster-master --workdir=/wd # You can now point your browser at http://127.0.0.1:12000 # Profit!