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