Files
rkllm-gradio-server/docker-compose.yaml
drholy 5a779f44a9
Some checks failed
Build, Push and Redeploy Docker Image / build-and-push (push) Failing after 3m45s
upgrade dockerfile
2026-02-03 20:40:21 +07:00

23 lines
353 B
YAML
Executable File

services:
rkllm:
build: .
platform: linux/arm64/v8
container_name: rkllm
restart: always
privileged: true
volumes:
- ./models:/app/models:ro
ulimits:
nofile:
soft: 16384
hard: 1048576
ports:
- "8080:8080"
networks:
- apps
networks:
apps:
name: apps
driver: bridge