mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:29:53 +01:00
8 lines
199 B
Bash
8 lines
199 B
Bash
|
#!/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 "$@"
|