From 86be036dbe1ef97ba58a69f3dcd1cdc760e7dcdc Mon Sep 17 00:00:00 2001 From: Yurii Torbyk Date: Sat, 25 Feb 2023 16:07:18 -0600 Subject: [PATCH] Mount bash_completion.d directory as separate volume --- environments/includes/php-fpm.base.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/environments/includes/php-fpm.base.yml b/environments/includes/php-fpm.base.yml index 531efd26..a461c359 100644 --- a/environments/includes/php-fpm.base.yml +++ b/environments/includes/php-fpm.base.yml @@ -6,10 +6,11 @@ x-volumes: &volumes - .${WARDEN_WEB_ROOT:-}/:/var/www/html:cached - bashhistory:/bash_history - sshdirectory:/home/www-data/.ssh + - bashcompletion:/etc/bash_completion.d x-extra_hosts: &extra_hosts - - ${TRAEFIK_DOMAIN}:${TRAEFIK_ADDRESS:-0.0.0.0} - - ${TRAEFIK_SUBDOMAIN:-app}.${TRAEFIK_DOMAIN}:${TRAEFIK_ADDRESS:-0.0.0.0} + - ${TRAEFIK_DOMAIN}:${TRAEFIK_ADDRESS:-0.0.0.0} + - ${TRAEFIK_SUBDOMAIN:-app}.${TRAEFIK_DOMAIN}:${TRAEFIK_ADDRESS:-0.0.0.0} services: nginx: @@ -51,3 +52,4 @@ services: volumes: bashhistory: sshdirectory: + bashcompletion: