fix variable name typo (#16255)

This commit is contained in:
Danny Sauer 2022-12-01 02:47:00 -06:00 committed by GitHub
parent fef904be8d
commit 6479f8ce9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ services:
The new `volumes` key mounts the project directory (current directory) on the
host to `/code` inside the container, allowing you to modify the code on the
fly, without having to rebuild the image. The `environment` key sets the
`FLASK_ENV` environment variable, which tells `flask run` to run in development
`FLASK_DEBUG` environment variable, which tells `flask run` to run in development
mode and reload the code on change. This mode should only be used in development.
## Step 6: Re-build and run the app with Compose