build.sh 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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="postgres"
  4. # apt source, you can select 'nchc' or 'aliyun' according to your network.
  5. APT_SOURCE="nchc"
  6. DB_PASSWORD="YOUR_DB_PASSWORD"
  7. DB_RUN_NAME="YOUR_DB_RUN_NAME"
  8. HOST_PORT="YOUR_HOST_PORT"
  9. # Replace the database root password in database image Dockerfile.
  10. sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/$DB_TYPE/Dockerfile
  11. # Replace the database root password in gogits image deploy.sh file.
  12. sed -i "s/THE_DB_PASSWORD/$DB_PASSWORD/g" images/gogits/deploy.sh
  13. # Replace the apt source in gogits image Dockerfile.
  14. sed -i "s/#$APT_SOURCE#//g" images/gogits/Dockerfile
  15. # Replace the database type in gogits image deploy.sh file.
  16. sed -i "s/THE_DB_TYPE/$DB_TYPE/g" images/gogits/deploy.sh
  17. # Build the database image
  18. cd images/$DB_TYPE
  19. docker build -t gogs/$DB_TYPE .
  20. #
  21. ## Build the gogits image
  22. cd ../gogits
  23. docker build -t gogs/gogits .
  24. #
  25. ## Run MySQL image with name
  26. docker run -d --name $DB_RUN_NAME gogs/$DB_TYPE
  27. #
  28. ## Run gogits image and link it to the database image
  29. echo "Now we have the $DB_TYPE image(running) and gogs image, use the follow command to start gogs service:"
  30. echo -e "\033[33m docker run -i -t --link $DB_RUN_NAME:db -p $HOST_PORT:3000 gogs/gogits \033[0m"