Files
rkllm-gradio-server/docker-compose.yaml
2026-02-03 18:31:42 +07:00

23 lines
384 B
YAML
Executable File

services:
rkllm:
build:
context: .
dockerfile: Dockerfile
platform: linux/arm64/v8
container_name: rkllm
restart: always
privileged: true
volumes:
- ./app:/app
- ./ezrknn-llm:/ezrknn-llm
entrypoint: ./app/entrypoint.sh
ports:
- "8080:8080"
networks:
- apps
networks:
apps:
name: apps
driver: bridge