Rake Command? Where?

Hi,

when going through the config, I stumble across the rake command here and there, which I am supposed to run to do certain things. However, if I go into my Discourse folder /var/discourse and enter “rake”, my Ubuntu tells me this command is not installed.

Do I need to install it? Or do I have to get inside the container somehow and run it from there?

Thanks from a total newb ™. :slight_smile:

2 Likes

Discourse runs inside a docker container, so before running rake you need to enter the container by running

cd /var/discourse
./launcher enter app

Then go ahead and run the rake command

To get out of the container just type

exit
10 Likes

Awesome, thank you! :slight_smile:

2 Likes