X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/63303c22b704ca290c16ae908da1324f3ea25b2c..50f9fa6113c75dee6cddd7178daba9d17841b5c8:/docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml index ad55e660e..90cf4ddf6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,9 @@ -version: "3" - services: web: build: context: . + environment: + PIDFILE: /tmp/pids/server.pid volumes: - .:/app # Prevent these directories from mounting so they're not shared between host OS and Docker @@ -12,6 +12,8 @@ services: - web-tmp:/app/tmp # Mount a storage directory that will persist between runs - web-storage:/app/storage + tmpfs: + /tmp/pids/ ports: - "3000:3000" command: bundle exec rails s -p 3000 -b '0.0.0.0'