From d36f0ee9f70a93f742fe837c418afa9724dd8aaa Mon Sep 17 00:00:00 2001 From: Szwendacz Date: Thu, 18 Apr 2024 13:33:58 +0200 Subject: [PATCH] update histfile env vars --- cloud-toolbox/Containerfile | 2 +- gui-container/Containerfile | 2 +- jupyter/Containerfile | 4 ++++ system-toolbox/Containerfile | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/cloud-toolbox/Containerfile b/cloud-toolbox/Containerfile index 8a12f96..038d560 100644 --- a/cloud-toolbox/Containerfile +++ b/cloud-toolbox/Containerfile @@ -4,7 +4,7 @@ USER root ENV HISTSIZE=10000 ENV HISTTIMEFORMAT="%d/%m/%y %T " -ENV HISTFILESIZE=20000 +ENV HISTFILESIZE=200000 # for helm install script ENV VERIFY_CHECKSUM="false" diff --git a/gui-container/Containerfile b/gui-container/Containerfile index 9d77b0a..6003470 100644 --- a/gui-container/Containerfile +++ b/gui-container/Containerfile @@ -2,7 +2,7 @@ FROM registry.fedoraproject.org/fedora-minimal ENV HISTSIZE=10000 ENV HISTTIMEFORMAT="%d/%m/%y %T " -ENV HISTFILESIZE=20000 +ENV HISTFILESIZE=200000 ENV QT_QPA_PLATFORM=wayland ENV GENERAL_PKGS="\ diff --git a/jupyter/Containerfile b/jupyter/Containerfile index 2a66dd4..58eefb0 100644 --- a/jupyter/Containerfile +++ b/jupyter/Containerfile @@ -6,6 +6,10 @@ ENV PATH=/venv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ENV PKGS_DNF="python nodejs latex xelatex tini" ENV PKGS_DNF_BUILD="cargo python3-devel" +ENV HISTSIZE=10000 +ENV HISTTIMEFORMAT="%d/%m/%y %T " +ENV HISTFILESIZE=200000 + ENV PKGS_PIP="jupyter \ bash_kernel \ mariadb_kernel \ diff --git a/system-toolbox/Containerfile b/system-toolbox/Containerfile index 9cf01b4..5d7d730 100644 --- a/system-toolbox/Containerfile +++ b/system-toolbox/Containerfile @@ -4,7 +4,7 @@ USER root ENV HISTSIZE=10000 ENV HISTTIMEFORMAT="%d/%m/%y %T " -ENV HISTFILESIZE=20000 +ENV HISTFILESIZE=200000 ENV PKGS_BASE="fzf bash-completion python3-cryptography"