I am using guard-rails with the daemon: true option set.
It starts up fine, but when accessing localhost:3000 from the browser I am getting an error: Errno::EACCES (Permission denied @ dir_initialize - /run/runc).
Everything runs ok when not using the daemon option. I'm using a gemset with RVM if that changes anything.
Versions:
$ gem info guard guard-rails rails
*** LOCAL GEMS ***
guard (2.15.0)
Author: Thibaud Guillaume-Gentil
Homepage: http://guardgem.org
License: MIT
Installed at: /home/coaxial/.rvm/gems/ruby-2.6.1@kersinki
Guard keeps an eye on your file modifications
*** LOCAL GEMS ***
guard-rails (0.8.1)
Authors: John Bintz, Wanzhang Sheng
Homepage: https://github.com/ranmocy/guard-rails
License: MIT
Installed at: /home/coaxial/.rvm/gems/ruby-2.6.1@kersinki
Guard your Rails to always be there.
*** LOCAL GEMS ***
rails (5.2.2.1)
Author: David Heinemeier Hansson
Homepage: http://rubyonrails.org
License: MIT
Installed at: /home/coaxial/.rvm/gems/ruby-2.6.1@kersinki
Full-stack web application framework.
My guard:
guard 'rails', daemon: true do
watch('Gemfile.lock')
watch(%r{^(config|lib)/.*})
end
I am using
guard-rails
with thedaemon: true
option set.It starts up fine, but when accessing
localhost:3000
from the browser I am getting an error:Errno::EACCES (Permission denied @ dir_initialize - /run/runc)
.Everything runs ok when not using the daemon option. I'm using a gemset with RVM if that changes anything.
Versions:
My guard:
Full trace: