burrow-pi-img/stage2/04-custom-tweaks/01-run.sh
Ani Balasubramaniam 7194187c21 1. Update config to remove a stage list, opt to use SKIP(_IMAGES) instead to build the lite-image.
2. Removed auto-login script which isn't needed.
2020-03-18 18:20:48 -07:00

10 lines
258 B
Bash
Executable File

#!/bin/bash -e
# Install Docker using default installation script
# and perform post-install steps to not require
# sudo for docker commands
echo "Installing docker..."
on_chroot << EOF
curl -sSL get.docker.com | sh
usermod -aG docker ${FIRST_USER_NAME}
EOF