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.

27 lines
1.2 KiB

  1. #!/bin/bash
  2. echo "####################################################################"
  3. echo "# docker_typo3_build_script #"
  4. echo "# Dennis Buchhorn - bucde@b-eit.de #"
  5. echo "####################################################################"
  6. echo "# This script will build an 'martinhelmich/typo3:10.4' image with #"
  7. echo "# customized 'b-eit/php:7.4-apache-buster' image. #"
  8. echo "# #"
  9. echo "# NOTE: 'b-eit/php:7.4-apache-buster' must be build befor! It is #"
  10. echo "# not in the docker hub repository. #"
  11. echo "# You can find the build script at #"
  12. echo "# https://git.bs.b-eit.de/bucde/docker_php_apache #"
  13. echo "# #"
  14. echo "# With this you can bind mount volumes to /var/www/html/* and have #"
  15. echo "# the same permissions from the host (if uid and gid matches). #"
  16. #echo "# #"
  17. echo "####################################################################"
  18. echo ""
  19. TYPO3_IMAGE_NAME="b-eit/typo3:10.4"
  20. read -p "Do you want to continue? (ENTER)"
  21. docker build -t $TYPO3_IMAGE_NAME .
  22. echo "Done!"