mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
8 lines
198 B
Bash
8 lines
198 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 "$@" |