You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 rivejä
425 B

  1. @echo off
  2. set envType=%1
  3. if "%envType%"=="" (
  4. echo Please input environment
  5. ) else (
  6. echo Building ThinkFace %envType% env
  7. call mvn clean install -P %envType% -DskipTests=true -f ../pom.xml
  8. echo %envType% build successful
  9. echo upload %envType% war
  10. if "%envType%"=="docker" (
  11. docker build -t thinkface:latest .
  12. docker run -it -p 8888:8080 thinkface
  13. )
  14. )
  15. pause>nul