Some checks failed
Build, Push and Redeploy Docker Image / build-and-push (push) Failing after 3m45s
23 lines
353 B
YAML
Executable File
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
|
|
|