A server is already running. Check …/tmp/pids/server.pid. Exiting - rails

前端 未结 19 1638
礼貌的吻别
礼貌的吻别 2021-01-29 20:35
..$ rails s
=> Booting WEBrick
=> Rails 4.0.4 application starting in development on http://0.0.0.0:3000
=> Run `rails server -h` for more startup options
=>         


        
19条回答
  •  温柔的废话
    2021-01-29 20:58

    If you are using docker-compose, and in docker-compose.yml have: volumes: - .:/myapp That means you local workspace is mapped to the container's /myapp folder.

    Anything in /myapp will not be deleted for the volumes define.

    You can delete ./tmp/pids/server.pid in you local machine. Then the container's /myapp will not have this file.

提交回复
热议问题