mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-23 17:25:14 +02:00
27 lines
929 B
YAML
27 lines
929 B
YAML
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
llama:
|
|
image: bitnami/pytorch:latest
|
|
container_name: llama-3-8b
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- WANDB_DISABLED=true
|
|
- TRANSFORMERS_CACHE=/app/cache
|
|
volumes:
|
|
- llama_cache:/app/cache
|
|
- llama_model:/app/model
|
|
|
|
volumes:
|
|
llama_cache:
|
|
llama_model:
|