File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,9 @@ make docker-run-sqlalchemy
81
81
82
82
The application will be started on < http://localhost:8080 > .
83
83
84
+ By default, the apps are run with uvicorn hot-reloading enabled. This can be turned off by changing the value
85
+ of the ` RELOAD ` env var in docker-compose.yml to ` false ` .
86
+
84
87
#### Note to Docker for Windows users
85
88
86
89
You'll need to enable experimental features on Docker for Windows in order to run the docker-compose,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
environment :
11
11
- APP_HOST=0.0.0.0
12
12
- APP_PORT=8081
13
- - RELOAD=false
13
+ - RELOAD=true
14
14
- ENVIRONMENT=local
15
15
- POSTGRES_USER=username
16
16
- POSTGRES_PASS=password
@@ -36,7 +36,7 @@ services:
36
36
environment :
37
37
- APP_HOST=0.0.0.0
38
38
- APP_PORT=8082
39
- - RELOAD=false
39
+ - RELOAD=true
40
40
- ENVIRONMENT=local
41
41
- POSTGRES_USER=username
42
42
- POSTGRES_PASS=password
You can’t perform that action at this time.
0 commit comments