docker-live-image-test Repo for creating squashfs filesystem from docker images Build docker image docker build . -t live-test Export docker container via mksquashfs file mksquashfs 4.6 CID=$(docker run -d live-test /bin/true) docker export ${CID} | mksquashfs - image.squashfs -tar -noappend -comp xz -no-progress Check mksquashfs file unsquashfs -ls image.squashfs Links iximiuz - From Docker Container to Bootable Linux Disk Image defunctzombie/jetson-nano-image-maker hashbrowncipher/docker2squash.sh