From 24e41f717d57c6027cf036a15a437655f25c8f0e Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Wed, 2 Nov 2022 11:17:16 +0100 Subject: [PATCH] cleanup repo --- Dockerfile | 8 ++++---- .bash_profile => bash-config/.bash_profile | 0 .bashrc => bash-config/.bashrc | 0 entrypoint.sh => entrypoint-script/entrypoint.sh | 0 variables.sh => entrypoint-script/variables.sh | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename .bash_profile => bash-config/.bash_profile (100%) rename .bashrc => bash-config/.bashrc (100%) rename entrypoint.sh => entrypoint-script/entrypoint.sh (100%) rename variables.sh => entrypoint-script/variables.sh (100%) diff --git a/Dockerfile b/Dockerfile index 62ad1ca..f0758b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,11 +16,11 @@ VOLUME ["/logs"] VOLUME ["/sshkeys/host"] COPY motd.txt /etc/motd -COPY entrypoint.sh / -COPY variables.sh / +COPY entrypoint-script/entrypoint.sh / +COPY entrypoint-script/variables.sh / -COPY .bash_profile /root/ -COPY .bashrc /root/ +COPY bash-config/.bash_profile /root/ +COPY bash-config/.bashrc /root/ COPY prometheus-borg-exporter/borg_exporter.sh /usr/local/bin/ COPY prometheus-borg-exporter/borg_exporter.rc /etc/ diff --git a/.bash_profile b/bash-config/.bash_profile similarity index 100% rename from .bash_profile rename to bash-config/.bash_profile diff --git a/.bashrc b/bash-config/.bashrc similarity index 100% rename from .bashrc rename to bash-config/.bashrc diff --git a/entrypoint.sh b/entrypoint-script/entrypoint.sh similarity index 100% rename from entrypoint.sh rename to entrypoint-script/entrypoint.sh diff --git a/variables.sh b/entrypoint-script/variables.sh similarity index 100% rename from variables.sh rename to entrypoint-script/variables.sh