I have managed to install Discourse on Windows using WSL.
Prerequisites that i have done.
Enable WSL with version 2
I am using Ubuntu 20.04
Set up your distribution Follow the given instructions and you are ready to go
In the distribution, under my home home folder, /home/cosmin.
Install Docker as instructed in the first post. The installation part of docker.io was not necessary for me. I only executed sudo usermod -a -G docker $USER
After the Docker installation is complete, start the service with sudo docker service start and check it
cd discourse
Run d/boot_dev --init and wait to finish
Run in discourse folder, run d/unicorn and you are ready yo go
Note:
If the commands are reporting permissions error, try with sudo
Hope this helps
Have a nice day or evening!
Cosmin
Thanks for sharing your setup; however, I don’t have Windows. I’m specifically curious about the one-click Digital Ocean setup – is it suitable for development?
I’m getting this error when trying to run d/boot_dev --init
Errno::EACCES: Permission denied @ dir_s_mkdir - tmp
/src/config/boot.rb:23:in `<top (required)>'
/src/config/application.rb:16:in `require'
/src/config/application.rb:16:in `<top (required)>'
/src/Rakefile:7:in `require'
/src/Rakefile:7:in `<top (required)>'
/usr/local/bin/bundle:23:in `load'
/usr/local/bin/bundle:23:in `<main>'
(See full trace by running task with --trace)
Any ideas on how I fix it? Tried searching for it everywhere but didn’t find any solutions.
Edit: fixed it by doing chmod -R 777 ~/discourse, but now I’m getting this error:
gifsicle worker: gifsicle not found; please provide proper binary or disable this worker (--no-gifsicle argument or :gifsicle => false through options)
How to use plugins in this kind of setup?
I am trying to follow Install Plugins in Discourse, but it mentions /var/discourse/containers/app.yml file, which does not exist in my discourse directory.
I’ve got building a discourse dev environment working and able to test my patch, but how do I get my patch into my production instance? I tried building base, and then ./launcher rebuild app --run-image discourse/base:build, but it doesn’t seem to result in a running Discourse instance.
Usually I get an error about the syslog group missing, but I commented that out, and still didn’t end up with a running site. And nothing of note in docker logs.
We don’t really document this kind of stuff, but you would generate a “diff” file, the git apply the diff in a hook after you clone the repo. app.yml supports hooks.
A quick-and-dirty solution for self hosted single container things is just to edit the code in place and run sv restart unicorn
Not sure if this is the best place to ask about this problem but I’ve been unable to finish the Discourse installation using Docker on an Apple M1 computer.
After I run d/boot_dev --init all dependencies are installed without any apparent problem but once I get to the Migrating database step, it stays there consuming 100% of one of my cores and it doesn’t seem to move from there.
I tried logging in to the docker container and the bundle migrate task is running at 100% but no apparent activity on the posgresql process.
I tried briefly today, and got stuck at the same step as you, but with an error:
Invalid gemspec in [/usr/local/lib/ruby/gems/2.7.0/specifications/default/zlib-1.1.0.gemspec]: Malformed version number string specification_version
bundler: failed to load command: rake (/usr/local/bin/rake)
Yes, please do. There are multiple team members using Discourse on M1 (myself included) every day, so it works quite well!
I tried this today, and also ran into issues. The error I saw was because Docker’s architecture emulation doesn’t support inotify (which we use a lot in Discourse development). For now, I’ve added a warning to d/boot_dev when a non-x86_64 architecture is detected:
❯ d/boot_dev
WARNING: Docker architecture is not x86_64.
Discourse development is unlikely to work using Docker's architecture emulation.
Please try a native development installation.
I’ve now added a d/ember-cli helper, and forwarded port 4200 by default. The info at the top of this topis has also been updated. Once you’ve updated, run d/rails s in one terminal, and d/ember-cli in another. I’ve also set NO_EMBER_CLI as one of the variables which is passed through to Docker, so that is available if needed.