mirror of
https://github.com/chenasraf/opensnp.org-docker.git
synced 2026-05-17 17:48:10 +00:00
19 lines
265 B
Bash
Executable File
19 lines
265 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
bin/build
|
|
|
|
docker-compose up -d
|
|
|
|
docker-compose exec rails bash -l -c 'bundle exec rake db:reset'
|
|
|
|
wget -O - --retry-connrefused -T 60 http://${HOST:-localhost}:8080/
|
|
status=$?
|
|
|
|
docker-compose logs
|
|
|
|
docker-compose rm -sfv
|
|
|
|
exit $status
|