env.sh 613 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/bash
  2. # use with source
  3. ISPOOGE_MEDIA_PATH="$HOME/ispooge-media"
  4. IMAGE=ispooge-build
  5. # todo: IMAGE_DEV like STATIC
  6. NAME=ispooge.com-build
  7. DEV_PORT=33000
  8. STATIC_PORT=33080
  9. RTMP_PORT=33935
  10. HTTP_PORT=33936
  11. DOMAIN=ispooge.com
  12. HOSTS=ispooge.com
  13. NAME_STATIC=ispooge.com-static
  14. IMAGE_STATIC=docker-registry.local:5000/ispooge.com/ispooge-static:28
  15. IMAGE_STATIC_LOCAL=ispooge-static
  16. NAME_STREAMING=ispooge.com-streaming
  17. IMAGE_STREAMING=docker-registry.local:5000/ispooge.com/ispooge-streaming:3
  18. IMAGE_STREAMING_LOCAL=ispooge-streaming
  19. if [ -f scripts/env-local.sh ]; then
  20. source scripts/env-local.sh
  21. fi