Skip to content

Commit

Permalink
[Fix: build] fix maven ignore and docker entrypoint (apache#1964)
Browse files Browse the repository at this point in the history
  • Loading branch information
yu199195 authored Aug 23, 2021
1 parent 1456694 commit f1dddbd
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 24 deletions.
51 changes: 28 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,37 +1,42 @@
# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
# maven ignore
target/
*.class
*.jar
*.war
*.ear
*.zip
*.tar
*.tar.gz
dependency-reduced-pom.xml

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

*~
# maven plugin ignore
release.properties
cobertura.ser
*.gpg

# eclipse ignore
.settings
.settings/
.project
.classpath
.tomcatplugin
logPath_IS_UNDEFINED
*.gz
disconf
dist
logs

# idea ignore
.idea
.idea/
*.ipr
*.iml
*.iws

# maven ignore
target

# other ignore
# temp ignore
logs/
*.log
*.doc
*.cache
*.diff
*.patch
*.tmp

# system ignore
.DS_Store
Thumbs.db
*.DS_Store
.factorypath

# agent build ignore
/agent/

6 changes: 5 additions & 1 deletion shenyu-dist/shenyu-bootstrap-dist/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@

[[ -d ./conf-ext ]] && cp -f ./conf-ext/* ./conf

/bin/sh ${LOCAL_PATH}/bin/start.sh && tail -f ${LOCAL_PATH}/logs/shenyu-bootstrap.out
mkdir -p ${LOCAL_PATH}/logs
touch ${LOCAL_PATH}/logs/shenyu-bootstrap.log

/bin/sh ${LOCAL_PATH}/bin/start.sh && tail -f ${LOCAL_PATH}/logs/shenyu-bootstrap.log

0 comments on commit f1dddbd

Please sign in to comment.