mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-18 01:53:14 +02:00
22 lines
481 B
YAML
22 lines
481 B
YAML
|
|
# -------------------------------------------------------------------------
|
|
# 🚀 Created and distributed by The AltStack
|
|
# 🌍 https://thealtstack.com
|
|
# -------------------------------------------------------------------------
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
ollama-llama:
|
|
image: ollama/ollama:latest
|
|
container_name: ollama-llama
|
|
restart: unless-stopped
|
|
command: serve
|
|
ports:
|
|
- "11434:11434"
|
|
volumes:
|
|
- ollama:/root/.ollama
|
|
|
|
volumes:
|
|
ollama:
|