mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-08 23:12:23 +00:00
Fix database_path
in Docker env
Also, add `mailer_dsn` and limit xdebug to allow installation of PHP < 8
This commit is contained in:
parent
c684ad2d51
commit
b2b1e1c437
2 changed files with 4 additions and 10 deletions
|
@ -53,7 +53,7 @@ RUN docker-php-ext-install -j "$(nproc)" \
|
||||||
|
|
||||||
RUN pecl install redis; \
|
RUN pecl install redis; \
|
||||||
pecl install imagick; \
|
pecl install imagick; \
|
||||||
pecl install xdebug; \
|
pecl install xdebug-3.1.6; \
|
||||||
docker-php-ext-enable \
|
docker-php-ext-enable \
|
||||||
redis \
|
redis \
|
||||||
imagick \
|
imagick \
|
||||||
|
|
|
@ -6,7 +6,7 @@ parameters:
|
||||||
database_name: ${DATABASE_NAME:-symfony}
|
database_name: ${DATABASE_NAME:-symfony}
|
||||||
database_user: ${DATABASE_USER:-root}
|
database_user: ${DATABASE_USER:-root}
|
||||||
database_password: ${DATABASE_PASSWORD:-~}
|
database_password: ${DATABASE_PASSWORD:-~}
|
||||||
database_path: ${DATABASE_PATH:-"%kernel.root_dir%/data/db/wallabag.sqlite"}
|
database_path: '${DATABASE_PATH:-"%kernel.root_dir%/data/db/wallabag.sqlite"}'
|
||||||
database_table_prefix: wallabag_
|
database_table_prefix: wallabag_
|
||||||
database_socket: null
|
database_socket: null
|
||||||
database_charset: ${DATABASE_CHARSET:-utf8}
|
database_charset: ${DATABASE_CHARSET:-utf8}
|
||||||
|
@ -14,13 +14,7 @@ parameters:
|
||||||
domain_name: ${DOMAIN_NAME:-https://www.example.com}
|
domain_name: ${DOMAIN_NAME:-https://www.example.com}
|
||||||
server_name: ${SERVER_NAME:-"Your wallabag instance"}
|
server_name: ${SERVER_NAME:-"Your wallabag instance"}
|
||||||
|
|
||||||
mailer_transport: ${MAILER_TRANSPORT:-smtp}
|
mailer_dsn: ${MAILER_DSN:-"smtp://127.0.0.1"}
|
||||||
mailer_user: ${MAILER_USER:-~}
|
|
||||||
mailer_password: ${MAILER_PASSWORD:-~}
|
|
||||||
mailer_host: ${MAILER_HOST:-127.0.0.1}
|
|
||||||
mailer_port: ${MAILER_PORT:-25}
|
|
||||||
mailer_encryption: ${MAILER_ENCRYPTION:-~}
|
|
||||||
mailer_auth_mode: ${MAILER_AUTH_MODE:-~}
|
|
||||||
|
|
||||||
locale: ${LOCALE:-en}
|
locale: ${LOCALE:-en}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue