You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -68,6 +68,7 @@ Containers are rebuilt weekly in order to take on the security patches from upst
68
68
## How To
69
69
70
70
### Using the Full Image
71
+
71
72
The Full Images use the base Python Docker images as their parent. These images are based off of Ubuntu and contain a variety of build tools.
72
73
73
74
To pull the latest full version:
@@ -103,6 +104,7 @@ FROM ghcr.io/multi-py/python-gunicorn-uvicorn:py3.11-slim-LATEST
103
104
104
105
105
106
### Copy Just the Packages
107
+
106
108
It's also possible to copy just the Python packages themselves. This is particularly useful when you want to use the precompiled libraries from multiple containers.
107
109
108
110
```dockerfile
@@ -181,6 +183,17 @@ Where to find the prestart script.
181
183
182
184
When this is set to the string `true` uvicorn is launched in reload mode. If any files change uvicorn will reload the modules again, allowing for quick debugging. This comes at a performance cost, however, and should not be enabled on production machines.
183
185
186
+
187
+
### `GUNICORN_EXTRA_FLAGS`
188
+
189
+
This variable can be used to pass extra flags to the `gunicorn` command on launch. It's value is added directly to the command that is called, and has to be formatted appropriately for the command line.
190
+
191
+
192
+
### `UVICORN_EXTRA_FLAGS`
193
+
194
+
This variable can be used to pass extra flags to the `uvicorn` command on launch. It's value is added directly to the command that is called, and has to be formatted appropriately for the command line.
195
+
196
+
184
197
## Python Versions
185
198
186
199
This project actively supports these Python versions:
@@ -230,6 +243,7 @@ If you get use out of these containers please consider sponsoring me using Githu
0 commit comments