27 lines
415 B
YAML
27 lines
415 B
YAML
version: "3"
|
|
services:
|
|
ars:
|
|
build:
|
|
dockerfile: ./docker/Dockerfile
|
|
context: ..
|
|
args:
|
|
- buildno=1
|
|
image: ars:latest
|
|
container_name: ars
|
|
volumes:
|
|
- ../sherpa-onnx:/file/sherpa-onnx
|
|
networks:
|
|
- ars
|
|
ports:
|
|
- 7777:7777
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4096M
|
|
restart: on-failure
|
|
networks:
|
|
ars:
|
|
driver: bridge
|
|
|
|
|