Esraa Madi
11/14/2022, 11:39 AMRick Lamers
argilla/argilla-server
for the service?Esraa Madi
11/14/2022, 12:49 PMRick Lamers
/_nuxt/8d9ab4d.js
instead of /argilla/service/_nuxt/8d9ab4d.js
.
If you’re keen on running Argilla in Orchest that kind of ‘base url’ ability of the application is required. I recommend reaching out to the folks of Argilla at https://github.com/argilla-io/argilla/issuessh
args: -c 'echo "discovery.type: single-node" >> /usr/share/elasticsearch/config/elasticsearch.yml && cat /usr/share/elasticsearch/config/elasticsearch.yml && /usr/local/bin/docker-entrypoint.sh'
This uses the elasticsearch.yml to configure it in single-node. That avoids their awkward use of environment variables with a period in it. How nonstandard that is is confirmed by a basic shell command: sh -c 'discovery.type=single node echo 1'
throws an error because sh
does not allow environment variables to have periods.Esraa Madi
11/15/2022, 10:36 AMRick Lamers