#!/bin/sh # # docker_open-lumiera-buildenv.sh - launch Docker container with interactive build shell # # #------------------------------------------------------Setup # # Working directory path on the host WORKDIR_HOST="/home/$USER/devel/lumi" # # bind-mount of the working dir in the container WORKDIR_GUEST="/lumi" # # Docker image-ID to launch DOCKER_IMAGE="ubuntu:bionic" # # Script code to inject into interactive shell COMMANDS=$(cat) <