Skip to content
Snippets Groups Projects
Commit 6d44b97d authored by Arthur Le Bars's avatar Arthur Le Bars
Browse files

elasticsearch memory lock removed

parent 4a12ac67
No related branches found
No related tags found
1 merge request!1Release 1.0
...@@ -56,10 +56,22 @@ services: ...@@ -56,10 +56,22 @@ services:
ENABLE_JBROWSE: /jbrowse/?data=data/{{ genus_species_sex }} ENABLE_JBROWSE: /jbrowse/?data=data/{{ genus_species_sex }}
# This ENABLE_JBROWSE variable should point to the "best assembly" by default --> tag it in the input file and use it to define this variable correctly (also called # This ENABLE_JBROWSE variable should point to the "best assembly" by default --> tag it in the input file and use it to define this variable correctly (also called
# unique id in the jbrowse tool parameters == both have to be identical) # unique id in the jbrowse tool parameters == both have to be identical)
{% if apollo == "True %}
ENABLE_APOLLO: 1
{% else %}
ENABLE_APOLLO: 0 ENABLE_APOLLO: 0
{% endif %}
{% if blast == "True" %}
ENABLE_BLAST: 1 ENABLE_BLAST: 1
{% else %}
ENABLE_BLAST: 0
{% endif %}
ENABLE_DOWNLOAD: 1 ENABLE_DOWNLOAD: 1
{% if wiki == "True" %}
ENABLE_WIKI: 1
{% else %}
ENABLE_WIKI: 0 ENABLE_WIKI: 0
{% endif %}
ENABLE_GO: 0 ENABLE_GO: 0
ENABLE_ORTHOLOGY: 0 ENABLE_ORTHOLOGY: 0
ENABLE_ORTHOLOGY_LINKS: 0 ENABLE_ORTHOLOGY_LINKS: 0
...@@ -108,7 +120,7 @@ services: ...@@ -108,7 +120,7 @@ services:
volumes: volumes:
- ./docker_data/elastic_search_index/:/usr/share/elasticsearch/data/ - ./docker_data/elastic_search_index/:/usr/share/elasticsearch/data/
environment: environment:
bootstrap.memory_lock: "true" # bootstrap.memory_lock: "true"
xpack.security.enabled: "false" xpack.security.enabled: "false"
xpack.monitoring.enabled: "false" xpack.monitoring.enabled: "false"
xpack.ml.enabled: "false" xpack.ml.enabled: "false"
...@@ -209,6 +221,7 @@ services: ...@@ -209,6 +221,7 @@ services:
max_attempts: 3 max_attempts: 3
window: 120s window: 120s
{% if blast == "True" %}
blast: blast:
image: quay.io/abretaud/sf-blast:latest image: quay.io/abretaud/sf-blast:latest
depends_on: depends_on:
...@@ -278,6 +291,7 @@ services: ...@@ -278,6 +291,7 @@ services:
- ./docker_data/blast_db/:/var/lib/postgresql/data/ - ./docker_data/blast_db/:/var/lib/postgresql/data/
networks: networks:
- {{ genus_species }} - {{ genus_species }}
{% endif %}
# wiki: # wiki:
# image: quay.io/abretaud/mediawiki # image: quay.io/abretaud/mediawiki
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment