This is an automated email from the ASF dual-hosted git repository.

vavrtom pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/main by this push:
     new 34f42c82aa QPID-8708: [Broker-J] Docker entrypoint script copies links 
instead of files (#324)
34f42c82aa is described below

commit 34f42c82aab32eaf842078f71185dec8e867b772
Author: Daniil Kirilyuk <[email protected]>
AuthorDate: Tue Sep 2 08:58:23 2025 +0200

    QPID-8708: [Broker-J] Docker entrypoint script copies links instead of 
files (#324)
---
 qpid-docker/entrypoint.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qpid-docker/entrypoint.sh b/qpid-docker/entrypoint.sh
index e1a8a098f0..993f281516 100644
--- a/qpid-docker/entrypoint.sh
+++ b/qpid-docker/entrypoint.sh
@@ -23,11 +23,11 @@ set -e
 
 if ! [ -f ./work/config.json ]; then
   if [ -d ./work-init ]; then
-      for file in `ls ./work-init`; do echo copying file to work folder: 
$file; cp -r ./work-init/$file ./work || :; done
+      for file in `ls ./work-init`; do echo copying file to work folder: 
$file; cp -r -L ./work-init/$file ./work || :; done
   fi
   sed -i "s/QPID_ADMIN_USER/${QPID_ADMIN_USER}/g" 
/qpid-broker-j/work/broker.acl
   if [ -d ./work-override ]; then
-    for file in `ls ./work-override`; do echo copying file to work folder: 
$file; cp -r ./work-override/$file ./work || :; done
+    for file in `ls ./work-override`; do echo copying file to work folder: 
$file; cp -r -L ./work-override/$file ./work || :; done
   fi
 else
   echo "skipping broker instance creation; instance already exists"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to