I am trying to chown the mounted volume directory in a Bluemix docker container. My run.sh that is run after the container started states:
chown -R grafana:grafana "$GF_PATHS_DATA" "$GF_PATHS_LOGS"
I get the error:
Cchown: changing ownership of '/var/lib/grafana': Permission denied
Is there a way to make chown usable, or do i need to use chmod instead.