Retrospring/.docker/entrypoint.sh

8 lines
199 B
Bash
Raw Normal View History

2020-05-09 01:16:30 -07:00
#!/bin/bash
set -e
# Remove a potentially pre-existing server.pid for Rails.
rm -f /app/tmp/pids/server.pid
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"