All checks were successful
Podman DDNS Image / build-and-push-ddns (push) Successful in 1m0s
45 lines
855 B
Plaintext
45 lines
855 B
Plaintext
[Unit]
|
|
Description=A Llama CPP Server Running GPT OSS 120b
|
|
|
|
[Container]
|
|
# Shared AI pod
|
|
Pod=ai.pod
|
|
|
|
# Image is built locally via podman build
|
|
Image=localhost/llama-cpp-vulkan:latest
|
|
|
|
# Downloaded models volume
|
|
Volume=/home/ai/models/text:/models:z
|
|
|
|
# GPU Device
|
|
AddDevice=/dev/kfd
|
|
AddDevice=/dev/dri
|
|
|
|
# Server command
|
|
Exec=--port 8000 \
|
|
-c 48000 \
|
|
-b 48000 \
|
|
-ub 500 \
|
|
--perf \
|
|
--n-gpu-layers all \
|
|
--jinja \
|
|
--models-max 1 \
|
|
--models-dir /models
|
|
|
|
# Health Check
|
|
HealthCmd=CMD-SHELL curl --fail http://127.0.0.1:8000/props?model=gpt-oss-120b || exit 1
|
|
HealthInterval=10s
|
|
HealthRetries=3
|
|
HealthStartPeriod=10s
|
|
HealthTimeout=30s
|
|
HealthOnFailure=kill
|
|
|
|
[Service]
|
|
Restart=always
|
|
# Extend Timeout to allow time to pull the image
|
|
TimeoutStartSec=900
|
|
|
|
[Install]
|
|
# Start by default on boot
|
|
WantedBy=multi-user.target default.target
|