mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-24 01:35:12 +02:00
24 lines
879 B
YAML
24 lines
879 B
YAML
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
qwen-2-5-7b:
|
|
image: huggingface/transformers-pytorch-gpu
|
|
container_name: qwen-2-5-7b
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- MODEL_NAME=qwen-2-5-7b
|
|
volumes:
|
|
- qwen_2_5_7b_data:/app/model
|
|
|
|
volumes:
|
|
qwen_2_5_7b_data:
|