mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
9bbae0e25a
Split the original docker-compose.yml into three separate files for enhanced modularity and ease of use. Created docker-compose.api.yml for API exposure configuration and docker-compose.gpu.yml for GPU support. This change simplifies the management of different deployment environments and configurations, making it easier to enable or disable specific features such as GPU support and API access without modifying the main docker-compose file.
14 lines
226 B
YAML
14 lines
226 B
YAML
version: '3.6'
|
|
|
|
services:
|
|
ollama:
|
|
# GPU support
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities:
|
|
- gpu
|