mirror of
https://github.com/illian64/llm-translate.git
synced 2026-04-28 11:49:54 +00:00
* Prepare for docker, documentation. * Prepare for docker, documentation. * Prepare for docker, documentation. --------- Co-authored-by: APodoinikov <APodoynikov@detmir.ru>
26 lines
487 B
YAML
26 lines
487 B
YAML
services:
|
|
web-app:
|
|
build:
|
|
context: .
|
|
networks:
|
|
- app_network
|
|
ports:
|
|
- 4990:4990
|
|
image: illian/llm-translate:0.1.0
|
|
volumes:
|
|
- ./cache:/app/cache
|
|
- ./files_processing:/app/files_processing
|
|
- ./options:/app/options
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
capabilities: [ gpu ]
|
|
count: all
|
|
|
|
networks:
|
|
app_network:
|
|
name: app_docker_network
|
|
|
|
|