env.sh 906 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/bash
  2. # Portainer Templates
  3. appsfolder="${homedir}template/apps"
  4. ptArm32="${homedir}template/portainer-v2-arm32.json"
  5. ptArm64="${homedir}template/portainer-v2-arm64.json"
  6. ptAmd64="${homedir}template/portainer-v2-amd64.json"
  7. # README Files with templates
  8. README="${homedir}docs/README.md"
  9. README_TEMPLATE="${homedir}build/templates/template_README.md"
  10. TOOLSREADME="${homedir}tools/README.md"
  11. TOOLSREADME_TEMPLATE="${homedir}build/templates/template_tools_README.md"
  12. # Lists Documents
  13. AppList="${homedir}docs/AppList.md"
  14. AppList_TEMPLATE="${homedir}build/templates/template_AppList.md"
  15. DocList="${homedir}docs/DocumentList.md"
  16. DocList_TEMPLATE="${homedir}build/templates/template_DocumentList.md"
  17. # appinfo file
  18. appinfo="${homedir}build/info.json"
  19. # Internal folders
  20. Scripts="../tools/"
  21. Extras="../tools/"
  22. Docs="../docs/"
  23. # Verification file
  24. verificationFile="${homedir}build/tmp/lastrun.sha256"