为什么下面不打印“1”?
docker run --rm -e ONE='1' alpine echo $ONE
问题在于
$ONE
docker run --rm -e ONE='1' alpine sh -c 'echo $ONE'
这确保了
1