23 lines
384 B
YAML
Executable File
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
|
|
|