3f403c9e7a
* Fix warning Integrity check: System parameters don't match * Reduce commands required to use docker-compose and update quick-setup doc Data will still persist when stopping and restarting containers. To destroy the data can use docker-compose down --volumes * Moved webpacker-dev-server to its own service * cache bundle and yarn - improve volume performance - env conditional statements * Fix inconsistent build results found during testing
8 lines
200 B
Bash
Executable file
8 lines
200 B
Bash
Executable file
#!/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 "$@"
|