From 646ca3af85c61a9bd0dde4f76dbbab5e452f1957 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Sat, 3 Aug 2024 19:32:17 -0700 Subject: [PATCH] Dockerfiles: source container bash completion --- client/Dockerfiles/finance/Dockerfile.archlinux.in | 3 ++- client/Dockerfiles/finance/Dockerfile.ubuntu.in | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/Dockerfiles/finance/Dockerfile.archlinux.in b/client/Dockerfiles/finance/Dockerfile.archlinux.in index c6a75e7..1e93fe7 100644 --- a/client/Dockerfiles/finance/Dockerfile.archlinux.in +++ b/client/Dockerfiles/finance/Dockerfile.archlinux.in @@ -78,11 +78,12 @@ RUN composer require ozdemirburak/json-csv RUN composer require ccxt/ccxt # -# Superscript +# Shell environment # USER @DOCKER_FINANCE_USER@ RUN echo "source \"\${DOCKER_FINANCE_CONTAINER_CONF}/shell/superscript.bash\"" | tee -a ~/.bashrc +RUN echo "source \"\${DOCKER_FINANCE_CONTAINER_REPO}/src/finance/completion.bash\"" | tee -a ~/.bashrc # # Entrypoint diff --git a/client/Dockerfiles/finance/Dockerfile.ubuntu.in b/client/Dockerfiles/finance/Dockerfile.ubuntu.in index 1b2011a..15d619c 100644 --- a/client/Dockerfiles/finance/Dockerfile.ubuntu.in +++ b/client/Dockerfiles/finance/Dockerfile.ubuntu.in @@ -82,11 +82,12 @@ RUN composer require ozdemirburak/json-csv RUN composer require ccxt/ccxt # -# Superscript +# Shell environment # USER @DOCKER_FINANCE_USER@ RUN echo "source \"\${DOCKER_FINANCE_CONTAINER_CONF}/shell/superscript.bash\"" | tee -a ~/.bash_aliases +RUN echo "source \"\${DOCKER_FINANCE_CONTAINER_REPO}/src/finance/completion.bash\"" | tee -a ~/.bash_aliases # # Entrypoint