sergio_educacionit

entrypoint.sh

Jan 3rd, 2026
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3.  
  4. if which apache2ctl; then
  5.  
  6. echo "Se salta instalacion"
  7. else
  8. apt update && apt install apache2 -y
  9.  
  10. fi
  11.  
  12.  
  13. sed -i "s|Clima por Coordenadas|$TITLE|" /var/www/html/index.html
  14.  
  15.  
  16. # recibe como argumento los parametros de 'CMD'
  17. # "apache2ctl", "-D", "FOREGROUND"
  18.  
  19. exec "$@"
  20.  
Advertisement
Add Comment
Please, Sign In to add comment