-
Notifications
You must be signed in to change notification settings - Fork 8
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 #12 from galaxy-genome-annotation/tripal_reflect
Fix data loading in Tripal database
- Loading branch information
Showing
11 changed files
with
77 additions
and
24 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
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,13 @@ | ||
## Chado's chakin: Global Configuration File. | ||
# Each stanza should contain a single chado server to control. | ||
# | ||
# You can set the key __default to the name of a default instance | ||
__default: local | ||
|
||
local: | ||
dbhost: "localhost" | ||
dbname: "postgres" | ||
dbuser: "postgres" | ||
dbpass: "postgres" | ||
dbport: "5433" | ||
dbschema: "chado" |
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,20 @@ | ||
version: '2' | ||
services: | ||
|
||
tripal: | ||
image: quay.io/galaxy-genome-annotation/tripal | ||
links: | ||
- tripaldb:postgres | ||
environment: | ||
MEMORY_LIMIT: 512M | ||
TRIPAL_GIT_CLONE_MODULES: "" | ||
TRIPAL_DOWNLOAD_MODULES: "" | ||
TRIPAL_ENABLE_MODULES: "" | ||
|
||
tripaldb: | ||
image: quay.io/galaxy-genome-annotation/chado:1.31-jenkins26-pg9.5 | ||
ports: | ||
- "5433:5432" | ||
environment: | ||
- POSTGRES_PASSWORD=postgres | ||
- INSTALL_CHADO_SCHEMA=0 |
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