Skip to content

Commit

Permalink
Исправлен сервис app-migration
Browse files Browse the repository at this point in the history
  • Loading branch information
audetv committed Apr 2, 2023
1 parent a7d7ebe commit be395fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/helpers/VersionHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class VersionHelper
*/
public static function version(): string
{
$version = 'v0.3.0';
$version = 'v0.3.1';
return Html::a($version, 'https://github.com/audetv/fct-search/releases/latest', ['target' => '_blank']);
}
}
6 changes: 3 additions & 3 deletions docker-compose-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ services:
environment:
APP_ENV: prod
APP_DEBUG: 0
POSTGRES_HOST: app-postgres
POSTGRES_USER: ${APP_POSTGRES_USER}}
POSTGRES_HOST: ${APP_POSTGRES_HOST}
POSTGRES_USER: ${APP_POSTGRES_USER}
POSTGRES_PASSWORD_FILE: /run/secrets/app_db_password
POSTGRES_DB: ${APP_POSTGRES_DB}
MAILER_HOST: ${APP_MAILER_HOST}
Expand Down Expand Up @@ -122,7 +122,7 @@ services:
environment:
APP_ENV: prod
APP_DEBUG: 0
POSTGRES_HOST: app-postgres
POSTGRES_HOST: ${APP_POSTGRES_HOST}
POSTGRES_USER: ${APP_POSTGRES_USER}
POSTGRES_PASSWORD_FILE: /run/secrets/app_db_password
POSTGRES_DB: ${APP_POSTGRES_DB}
Expand Down

0 comments on commit be395fe

Please sign in to comment.