#!/bin/bash

if [ "$#" -ne 1 ]; then
  echo "Usage: $0 CONTAINER_NAME" >&2
  exit 1
fi

sudo docker exec -ti $1 sh -c "cd /home/appimage && /bin/bash -l"
