fix typo
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-11-24 23:31:47 +01:00
parent 630eb39f81
commit 6dc2a86c07
3 changed files with 6 additions and 6 deletions

View File

@ -74,7 +74,7 @@ freshrss_limits_max_registrations: "1"
freshrss_extensions_enabled:
- "Tumblr-GDPR"
ttrss_db_type: pgsql
freshrss_db_type: pgsql
freshrss_db_server: localhost
freshrss_db_port: 5432
freshrss_db_name: freshrss

View File

@ -11,12 +11,12 @@ Type=simple
TimeoutStartSec=15min
Restart={{ freshrss_restart_policy }}
ExecStartPre={{ ttrss_docker_compose_bin }} pull --quiet --ignore-pull-failures
ExecStart={{ ttrss_docker_compose_bin }} up --remove-orphans
ExecStartPre={{ freshrss_docker_compose_bin }} pull --quiet --ignore-pull-failures
ExecStart={{ freshrss_docker_compose_bin }} up --remove-orphans
ExecStop={{ ttrss_docker_compose_bin }} down --remove-orphans
ExecStop={{ freshrss_docker_compose_bin }} down --remove-orphans
ExecReload={{ ttrss_docker_compose_bin }} pull --quiet --ignore-pull-failures
ExecReload={{ freshrss_docker_compose_bin }} pull --quiet --ignore-pull-failures
[Install]
WantedBy=multi-user.target

View File

@ -69,7 +69,7 @@ services:
- FRESHRSS_CURLOPT_PROXYUSERPWD={{ freshrss_curlopt_proxyuserpwd }}
{% endif %}
- FRESHRSS_DB_TYPE=pgsql
{% if ttrss_db_type == "pgsql" %}
{% if freshrss_db_type == "pgsql" %}
- FRESHRSS_DB_HOST={{ freshrss_db_server }};sslmode={{ freshrss_db_ssl_mode }}
{% else %}
- FRESHRSS_DB_HOST={{ freshrss_db_server }}