mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 10:18:07 +02:00
8 lines
No EOL
201 B
Bash
8 lines
No EOL
201 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Remove a potentially pre-existing server.pid for Rails.
|
|
rm -f /myapp/tmp/pids/server.pid
|
|
|
|
# Then exec the container's main process (what's set as CMD in the Dockerfile).
|
|
exec "$@" |