mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
8 lines
61 B
Bash
8 lines
61 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -o pipefail
|
||
|
|
||
|
rake db:setup
|
||
|
|
||
|
exec "$@"
|