Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. set -e
  3.  
  4. # Remove a potentially pre-existing server.pid for Rails.
  5. rm -f /app/tmp/pids/server.pid
  6.  
  7. # Then exec the container's main process (what's set as CMD in the Dockerfile).
  8. exec "$@"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement