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
|**DOCKER_INSTALL**| Set to "true" to enable the installation of Docker images. |
25
25
|**USE_AIO**| Set to "true" to use the all-in-one LocalAI Docker image. |
26
+
|**USE_EXTRAS**| Set to "true" to use images with extra Python dependencies. |
27
+
|**USE_VULKAN**| Set to "true" to use Vulkan GPU support. |
26
28
|**API_KEY**| Specify an API key for accessing LocalAI, if required. |
27
-
|**CORE_IMAGES**| Set to "true" to download core LocalAI images. |
28
29
|**PORT**| Specifies the port on which LocalAI will run (default is 8080). |
29
30
|**THREADS**| Number of processor threads the application should use. Defaults to the number of logical cores minus one. |
30
31
|**VERSION**| Specifies the version of LocalAI to install. Defaults to the latest available version. |
@@ -34,6 +35,14 @@ List of the Environment Variables:
34
35
|**FEDERATED**| Set to "true" to share the instance with the federation (p2p token is required see [documentation]({{%relref "docs/features/distributed_inferencing" %}})) |
35
36
|**FEDERATED_SERVER**| Set to "true" to run the instance as a federation server which forwards requests to the federation (p2p token is required see [documentation]({{%relref "docs/features/distributed_inferencing" %}})) |
36
37
38
+
## Image Selection
39
+
40
+
The installer will automatically detect your GPU and select the appropriate image. By default, it uses the standard images without extra Python dependencies. You can customize the image selection using the following environment variables:
41
+
42
+
-`USE_EXTRAS=true`: Use images with extra Python dependencies (larger images, ~17GB)
43
+
-`USE_AIO=true`: Use all-in-one images that include all dependencies
44
+
-`USE_VULKAN=true`: Use Vulkan GPU support instead of vendor-specific GPU support
Copy file name to clipboardExpand all lines: docs/content/docs/getting-started/container-images.md
+17-25
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,7 @@ The AIO Images are inheriting the same environment variables as the base images
150
150
151
151
Standard container images do not have pre-installed models.
152
152
153
-
Images are available with and without python dependencies. Note that images with python dependencies are bigger (in order of 17GB).
153
+
Images are available with and without python dependencies (images with the `extras` suffix). Note that images with python dependencies are bigger (in order of 17GB).
154
154
155
155
Images with `core` in the tag are smaller and do not contain any python dependencies.
156
156
@@ -160,10 +160,8 @@ Images with `core` in the tag are smaller and do not contain any python dependen
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-cublas-cuda11`|`localai/localai:master-cublas-cuda11`|
175
-
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-nvidia-cuda-11`|`localai/localai:latest-gpu-nvidia-cuda-11`|
173
+
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-nvidia-cuda-11`|`localai/localai:latest-gpu-nvidia-cuda-11`|
174
+
| Latest tag with extras |`quay.io/go-skynet/local-ai:latest-gpu-nvidia-cuda-11-extras`|`localai/localai:latest-gpu-nvidia-cuda-11-extras`|
176
175
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-cublas-cuda11`|`localai/localai:{{< version >}}-cublas-cuda11`|
177
-
| Versioned image including FFMpeg|`quay.io/go-skynet/local-ai:{{< version >}}-cublas-cuda11-ffmpeg`|`localai/localai:{{< version >}}-cublas-cuda11-ffmpeg`|
178
-
| Versioned image including FFMpeg, no python |`quay.io/go-skynet/local-ai:{{< version >}}-cublas-cuda11-ffmpeg-core`|`localai/localai:{{< version >}}-cublas-cuda11-ffmpeg-core`|
179
176
180
177
{{% /tab %}}
181
178
@@ -185,9 +182,8 @@ Images with `core` in the tag are smaller and do not contain any python dependen
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-cublas-cuda12`|`localai/localai:master-cublas-cuda12`|
187
184
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-nvidia-cuda-12`|`localai/localai:latest-gpu-nvidia-cuda-12`|
185
+
| Latest tag with extras |`quay.io/go-skynet/local-ai:latest-gpu-nvidia-cuda-12-extras`|`localai/localai:latest-gpu-nvidia-cuda-12-extras`|
188
186
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-cublas-cuda12`|`localai/localai:{{< version >}}-cublas-cuda12`|
189
-
| Versioned image including FFMpeg|`quay.io/go-skynet/local-ai:{{< version >}}-cublas-cuda12-ffmpeg`|`localai/localai:{{< version >}}-cublas-cuda12-ffmpeg`|
190
-
| Versioned image including FFMpeg, no python |`quay.io/go-skynet/local-ai:{{< version >}}-cublas-cuda12-ffmpeg-core`|`localai/localai:{{< version >}}-cublas-cuda12-ffmpeg-core`|
191
187
192
188
{{% /tab %}}
193
189
@@ -197,9 +193,8 @@ Images with `core` in the tag are smaller and do not contain any python dependen
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-sycl-f16`|`localai/localai:master-sycl-f16`|
199
195
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-intel-f16`|`localai/localai:latest-gpu-intel-f16`|
200
-
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f16-core`|`localai/localai:{{< version >}}-sycl-f16-core`|
201
-
| Versioned image including FFMpeg|`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f16-ffmpeg`|`localai/localai:{{< version >}}-sycl-f16-ffmpeg`|
202
-
| Versioned image including FFMpeg, no python |`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f16-ffmpeg-core`|`localai/localai:{{< version >}}-sycl-f16-ffmpeg-core`|
196
+
| Latest tag with extras |`quay.io/go-skynet/local-ai:latest-gpu-intel-f16-extras`|`localai/localai:latest-gpu-intel-f16-extras`|
197
+
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f16`|`localai/localai:{{< version >}}-sycl-f16`|
203
198
204
199
{{% /tab %}}
205
200
@@ -209,9 +204,8 @@ Images with `core` in the tag are smaller and do not contain any python dependen
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-sycl-f32`|`localai/localai:master-sycl-f32`|
211
206
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-intel-f32`|`localai/localai:latest-gpu-intel-f32`|
212
-
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f32-core`|`localai/localai:{{< version >}}-sycl-f32-core`|
213
-
| Versioned image including FFMpeg|`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f32-ffmpeg`|`localai/localai:{{< version >}}-sycl-f32-ffmpeg`|
214
-
| Versioned image including FFMpeg, no python |`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f32-ffmpeg-core`|`localai/localai:{{< version >}}-sycl-f32-ffmpeg-core`|
207
+
| Latest tag with extras |`quay.io/go-skynet/local-ai:latest-gpu-intel-f32-extras`|`localai/localai:latest-gpu-intel-f32-extras`|
208
+
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-sycl-f32`|`localai/localai:{{< version >}}-sycl-f32`|
215
209
216
210
{{% /tab %}}
217
211
@@ -220,20 +214,18 @@ Images with `core` in the tag are smaller and do not contain any python dependen
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-hipblas`|`localai/localai:master-hipblas`|
223
-
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-hipblas`|`localai/localai:latest-gpu-hipblas`|
217
+
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-hipblas`|`localai/localai:latest-gpu-hipblas`|
218
+
| Latest tag with extras |`quay.io/go-skynet/local-ai:latest-gpu-hipblas-extras`|`localai/localai:latest-gpu-hipblas-extras`|
224
219
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-hipblas`|`localai/localai:{{< version >}}-hipblas`|
225
-
| Versioned image including FFMpeg|`quay.io/go-skynet/local-ai:{{< version >}}-hipblas-ffmpeg`|`localai/localai:{{< version >}}-hipblas-ffmpeg`|
226
-
| Versioned image including FFMpeg, no python |`quay.io/go-skynet/local-ai:{{< version >}}-hipblas-ffmpeg-core`|`localai/localai:{{< version >}}-hipblas-ffmpeg-core`|
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-vulkan-ffmpeg-core `|`localai/localai:master-vulkan-ffmpeg-core `|
235
-
| Latest tag |`quay.io/go-skynet/local-ai:latest-vulkan-ffmpeg-core `|`localai/localai:latest-vulkan-ffmpeg-core`|
236
-
| Versioned image including FFMpeg, no python |`quay.io/go-skynet/local-ai:{{< version >}}-vulkan-fmpeg-core`|`localai/localai:{{< version >}}-vulkan-fmpeg-core`|
226
+
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-vulkan`|`localai/localai:master-vulkan`|
227
+
| Latest tag |`quay.io/go-skynet/local-ai:latest-gpu-vulkan`|`localai/localai:latest-gpu-vulkan`|
228
+
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-vulkan`|`localai/localai:{{< version >}}-vulkan`|
237
229
{{% /tab %}}
238
230
239
231
{{% tab tabName="Nvidia Linux for tegra" %}}
@@ -242,9 +234,9 @@ These images are compatible with Nvidia ARM64 devices, such as the Jetson Nano,
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-nvidia-l4t-arm64-core`|`localai/localai:master-nvidia-l4t-arm64-core`|
246
-
| Latest tag |`quay.io/go-skynet/local-ai:latest-nvidia-l4t-arm64-core`|`localai/localai:latest-nvidia-l4t-arm64-core`|
247
-
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-nvidia-l4t-arm64-core`|`localai/localai:{{< version >}}-nvidia-l4t-arm64-core`|
237
+
| Latest images from the branch (development) |`quay.io/go-skynet/local-ai:master-nvidia-l4t-arm64`|`localai/localai:master-nvidia-l4t-arm64`|
238
+
| Latest tag |`quay.io/go-skynet/local-ai:latest-nvidia-l4t-arm64`|`localai/localai:latest-nvidia-l4t-arm64`|
239
+
| Versioned image |`quay.io/go-skynet/local-ai:{{< version >}}-nvidia-l4t-arm64`|`localai/localai:{{< version >}}-nvidia-l4t-arm64`|
0 commit comments