-
Notifications
You must be signed in to change notification settings - Fork 14
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 #2 from ncbo/master
Sync: ncbo v5.33.0 release
- Loading branch information
Showing
10 changed files
with
144 additions
and
111 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
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,44 @@ | ||
version: '7.1' | ||
|
||
# Define default environment variables to pass | ||
# to Docker Compose | ||
#environment: | ||
# RAILS_ENV: development | ||
|
||
interaction: | ||
# This command spins up a container with the required dependencies (solr, 4store, etc), | ||
# and opens a terminal within it. | ||
runner: | ||
description: Open a Bash shell within a ncbo_annotator container (with dependencies up) | ||
service: ruby | ||
command: /bin/bash | ||
|
||
# Run a container without any dependent services | ||
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 TESTOPTS='-v' | ||
|
||
test-agraph: | ||
description: Run minitest unit tests | ||
service: ruby-agraph | ||
command: bundle exec rake test TESTOPTS='-v' | ||
|
||
'redis-cli': | ||
description: Run Redis console | ||
service: redis-ut | ||
command: redis-cli -h redis-ut |
Oops, something went wrong.