Hello there. I am running Laravel inside a container. Inside the container, echo $APP_ENV gives test. echo $APP_DEBUG gives true. Yet when I run artisan migrate, I get a big banner error message telling me that the application is in production, so it doesn't want to run. (Or asks for confirmation, but since this is part of a non-interactive script I cannot say yes.). I've also tried setting APP_ENV to "local", no difference.
How else do I tell Laravel that it's not in production mode?