build.sh 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Configs of the docker images, you might have specify your own configs here.
  2. # type of database, support 'mysql' and 'postgres'
  3. DB_TYPE="YOUR_DB_TYPE"
  4. # type of memory database, support 'redis' and 'memcache'
  5. MEM_TYPE="YOUR_MEM_TYPE"
  6. # apt source, you can select 'nchc'(mirror in Taiwan) or 'aliyun'(best for mainlance China users) according to your network, if you could connect to the official unbunt mirror in a fast speed, just leave it to "".
  7. APT_SOURCE=""
  8. DB_PASSWORD="YOUR_DB_PASSWORD"
  9. DB_RUN_NAME="YOUR_DB_RUN_NAME"
  10. MEM_RUN_NAME="YOUR_MEM_RUN_NAME"
  11. HOST_PORT="YOUR_HOST_PORT"
  12. # Replace the database root password in database image Dockerfile.
  13. sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/$DB_TYPE/Dockerfile
  14. # Replace the database root password in gogits image deploy.sh file.
  15. sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/gogits/deploy.sh
  16. # Replace the apt source in gogits image Dockerfile.
  17. sed -i "s/#$APT_SOURCE#//" images/gogits/Dockerfile
  18. # Uncomment the installation of database lib in gogs Dockerfile
  19. sed -i "s/#$DB_TYPE#//" images/gogits/Dockerfile
  20. # Replace the database type in gogits image deploy.sh file.
  21. sed -i "s/THE_DB_TYPE/$DB_TYPE/g" images/gogits/deploy.sh
  22. if [ $MEM_TYPE != "" ]
  23. then
  24. # Replace the mem configs in deploy.sh
  25. sed -i "s/THE_MEM_TYPE/$MEM_TYPE/g" images/gogits/deploy.sh
  26. # Uncomment the installation of go mem lib
  27. sed -i "s/#$MEM_TYPE#//" images/gogits/Dockerfile
  28. # Add the tags when get gogs
  29. sed -i "s#RUN go get -u -d github.com/gogits/gogs#RUN go get -u -d -tags $MEM_TYPE github.com/gogits/gogs#g" images/gogits/Dockerfile
  30. # Append the tag in gogs build
  31. GOGS_BUILD_LINE=`awk '$0 ~ str{print NR}' str="go build" images/gogits/Dockerfile`
  32. # Append the build tags
  33. sed -i "${GOGS_BUILD_LINE}s/$/ -tags $MEM_TYPE/" images/gogits/Dockerfile
  34. cd images/$MEM_TYPE
  35. docker build -t gogits/$MEM_TYPE .
  36. docker run -d --name $MEM_RUN_NAME gogits/$MEM_TYPE
  37. MEM_LINK=" --link $MEM_RUN_NAME:mem "
  38. cd ../../
  39. fi
  40. # Build the database image
  41. cd images/$DB_TYPE
  42. docker build -t gogits/$DB_TYPE .
  43. #
  44. ## Build the gogits image
  45. cd ../gogits
  46. docker build -t gogits/gogs .
  47. #sed -i "s#RUN go get -u -tags $MEM_TYPE github.com/gogits/gogs#RUN go get -u github.com/gogits/gogs#g" Dockerfile
  48. # Remove the appended tags in go build line(if there is any)
  49. sed -i "s/ -tags $MEM_TYPE//" Dockerfile
  50. #
  51. ## Run MySQL image with name
  52. docker run -d --name $DB_RUN_NAME gogits/$DB_TYPE
  53. #
  54. ## Run gogits image and link it to the database image
  55. echo "Now we have the $DB_TYPE image(running) and gogs image, use the follow command to start gogs service:"
  56. echo -e "\033[33m docker run -i -t --link $DB_RUN_NAME:db $MEM_LINK -p $HOST_PORT:3000 gogits/gogs \033[0m"