Mercurial > libervia-backend
comparison libervia/backend/plugins/plugin_app_manager_docker/sat_app_weblate.yaml @ 4071:4b842c1fb686
refactoring: renamed `sat` package to `libervia.backend`
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 02 Jun 2023 11:49:51 +0200 |
parents | sat/plugins/plugin_app_manager_docker/sat_app_weblate.yaml@a240748ed686 |
children |
comparison
equal
deleted
inserted
replaced
4070:d10748475025 | 4071:4b842c1fb686 |
---|---|
1 type: docker-compose | |
2 prepare: | |
3 git: https://github.com/WeblateOrg/docker-compose.git | |
4 files: | |
5 settings-override.py: | |
6 content: | | |
7 USE_X_FORWARDED_HOST = True | |
8 override: | |
9 version: "3" | |
10 services: | |
11 weblate: | |
12 ports: | |
13 - "8080" | |
14 environment: | |
15 WEBLATE_DEBUG: 0 | |
16 WEBLATE_URL_PREFIX: !sat_param [url_prefix, /weblate] | |
17 WEBLATE_EMAIL_HOST: !sat_conf ["", "email_server"] | |
18 WEBLATE_EMAIL_HOST_USER: !sat_conf ["", "email_username"] | |
19 WEBLATE_EMAIL_HOST_PASSWORD: !sat_conf ["", "email_password"] | |
20 WEBLATE_SERVER_EMAIL: !sat_conf ["", "email_from", "weblate@example.com"] | |
21 WEBLATE_DEFAULT_FROM_EMAIL: !sat_conf ["", "email_from", "weblate@example.com"] | |
22 WEBLATE_SITE_DOMAIN: !sat_conf ["", "public_url"] | |
23 WEBLATE_ADMIN_PASSWORD: !sat_generate_pwd | |
24 WEBLATE_ADMIN_EMAIL: !sat_conf ["", "email_admins_list", "", "first"] | |
25 WEBLATE_ENABLE_HTTPS: !sat_conf ["", "weblate_enable_https", "1"] | |
26 volumes: | |
27 - ./settings-override.py:/app/data/settings-override.py:ro | |
28 expose: | |
29 url_prefix: [override, services, weblate, environment, WEBLATE_URL_PREFIX] | |
30 front_url: !sat_param [front_url, /translate] | |
31 web_label: Translate | |
32 ports: | |
33 web: | |
34 service: weblate | |
35 private: 8080 | |
36 passwords: | |
37 admin: [override, services, weblate, environment, WEBLATE_ADMIN_PASSWORD] |