ARM システムでは、./launcher enter app を実行すると pull_image が実行されます。これはおそらく以下の理由によるものと思われます。
# 4. discourse docker image is downloaded
3 test=`$docker_path images | awk '{print $1 ":" $2 }' | grep "$image"`
2
1 # arm experimental support is on a fixed tag, always pull
227 if [ -z "$test" ] || [ $arm = true ]; then
1 echo
2 echo "WARNING: We are about to start downloading the Discourse base image"
3 echo "This process may take anywhere between a few minutes to an hour, depending on your network speed"
4 echo
5 echo "Please be patient"
6 echo
7
8 pull_image
9 fi
Docker に入る際に pull_image を実行する理由があるのでしょうか、それともバグでしょうか?