在 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 是有原因的,还是这是一个 bug?