7 lines
159 B
Bash
Executable file
7 lines
159 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# docker rebuild and bundle install
|
|
# updates Gemfile.lock
|
|
|
|
docker-compose down
|
|
docker-compose build
|
|
docker-compose run web bundle install
|