Skip to content

Instantly share code, notes, and snippets.

@brunomarks7
Created April 19, 2021 03:39
Show Gist options
  • Select an option

  • Save brunomarks7/2826854c8888137100915fab68dcf02f to your computer and use it in GitHub Desktop.

Select an option

Save brunomarks7/2826854c8888137100915fab68dcf02f to your computer and use it in GitHub Desktop.
Docker WordPress-Bitnami image permissions
#!/bin/bash
# Docker WordPress-Bitnami image permissions
sudo chown -R /opt/bitnami/apps/wordpress/htdocs
sudo find /opt/bitnami/apps/wordpress/htdocs -type d -exec chmod 775 {} \;
sudo find /opt/bitnami/apps/wordpress/htdocs -type f -exec chmod 664 {} \;
sudo chmod 640 /opt/bitnami/apps/wordpress/htdocs/wp-config.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment