entrypoint.sh 287 B

123456789
  1. #!/bin/bash
  2. # Set rainloop directory permissions to catch bind mounts too
  3. chown -R www-data:www-data /rainloop/data
  4. find /rainloop -type d -exec chmod 755 {} \;
  5. find /rainloop -type f -exec chmod 644 {} \;
  6. # Call same entrypoint command as base image
  7. /usr/local/bin/apache2-foreground