forked from ontoportal/ncbo_ontology_recommender
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from ncbo/ruby-v3
Ruby v3
- Loading branch information
Showing
9 changed files
with
242 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
version: '7.1' | ||
|
||
# Define default environment variables to pass | ||
# to Docker Compose | ||
#environment: | ||
# RAILS_ENV: development | ||
|
||
compose: | ||
files: | ||
- docker-compose.yml | ||
|
||
interaction: | ||
# This command spins up a ontologies_api container with the required dependencies (solr, 4store, etc), | ||
# and opens a terminal within it. | ||
runner: | ||
description: Open a Bash shell within a ontologies_api container (with dependencies up) | ||
service: ruby | ||
command: /bin/bash | ||
|
||
# Run a Rails container without any dependent services (useful for non-Rails scripts) | ||
bash: | ||
description: Run an arbitrary script within a container (or open a shell without deps) | ||
service: ruby | ||
command: /bin/bash | ||
compose_run_options: [ no-deps ] | ||
|
||
# A shortcut to run Bundler commands | ||
bundle: | ||
description: Run Bundler commands | ||
service: ruby | ||
command: bundle | ||
compose_run_options: [ no-deps ] | ||
|
||
# A shortcut to run unit tests | ||
test: | ||
description: Run minitest unit tests | ||
service: ruby | ||
command: bundle exec rake test | ||
|
||
test-ag: | ||
description: Run minitest unit tests | ||
service: ruby-ag | ||
command: bundle exec rake test | ||
|
||
|
||
'redis-cli': | ||
description: Run Redis console | ||
service: redis-ut | ||
command: redis-cli -h redis-ut | ||
|
||
#provision: | ||
#- dip compose down --volumes | ||
#- dip compose up -d solr 4store | ||
#- dip bundle install | ||
#- dip bash -c bin/setup |
Oops, something went wrong.