Docker permissions

Hi,

I just installed home assistant in docker on raspberry pi as described here

docker run --init -d --name=“home-assistant” -e “TZ=Europe/Copenhagen” -v /home/pi/homeassistant:/config --net=host homeassistant/raspberrypi3-homeassistant:stable

But when I try to edit files in the folder home/pi/homeassistant I don’t have permissions?

did you sudo
alot of folders by default you won’t have access to
use
chown USER -R /home/pi/homeassistant to fix

Thanks that did the trick :slight_smile: