Added libretranslate + wonsership script
This commit is contained in:
5
libretranslate/correct_ownership.sh
Executable file
5
libretranslate/correct_ownership.sh
Executable file
@@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
|
||||||
|
sudo chown -R 1000:1000 ./libretranslate_models
|
||||||
|
chmod -R u+rwX ./libretranslate_models
|
||||||
34
libretranslate/docker-compose.yml
Normal file
34
libretranslate/docker-compose.yml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
services:
|
||||||
|
libretranslate:
|
||||||
|
container_name: libretranslate
|
||||||
|
image: libretranslate/libretranslate:latest
|
||||||
|
ports:
|
||||||
|
- "5555:5000"
|
||||||
|
restart: unless-stopped
|
||||||
|
user: "1000:1000"
|
||||||
|
healthcheck:
|
||||||
|
test: ['CMD-SHELL', './venv/bin/python scripts/healthcheck.py']
|
||||||
|
interval: 10s
|
||||||
|
timeout: 4s
|
||||||
|
retries: 4
|
||||||
|
start_period: 5s
|
||||||
|
## Uncomment this for logging in docker compose logs
|
||||||
|
tty: true
|
||||||
|
## Uncomment above command and define your args if necessary
|
||||||
|
## Refer to the documentation for more information: https://docs.libretranslate.com/guides/installation/#arguments
|
||||||
|
# command: --ssl --req-limit 100 --char-limit 500
|
||||||
|
## Uncomment this section and the libretranslate_api_keys volume if you want to backup your API keys
|
||||||
|
environment:
|
||||||
|
# - LT_API_KEYS=true
|
||||||
|
# - LT_API_KEYS_DB_PATH=/app/db/api_keys.db # Same result as `db/api_keys.db` or `./db/api_keys.db`
|
||||||
|
## Uncomment these vars and libretranslate_models volume to optimize loading time.
|
||||||
|
- LT_UPDATE_MODELS=true
|
||||||
|
- LT_LOAD_ONLY=en,fr,ru,es,ro,de,ja,zh,pt,it,ko
|
||||||
|
volumes:
|
||||||
|
# - ./libretranslate_api_keys:/app/db
|
||||||
|
# Keep the models in a docker volume, to avoid re-downloading on startup
|
||||||
|
- ./libretranslate_models:/home/libretranslate/.local:rw
|
||||||
|
|
||||||
|
# volumes:
|
||||||
|
# libretranslate_api_keys:
|
||||||
|
# libretranslate_models:
|
||||||
Reference in New Issue
Block a user