I'm encountering an issue while working with the tags/wmde.17 branch and setting up the extended installation on my server, which includes Wikibase, WDQS, and Quickstatements. Despite adding data to Wikibase, I'm unable to retrieve any results when executing my query.
I've configured the necessary variables in my .env file
## Image Configuration
WIKIBASE_IMAGE_NAME=wikibase/wikibase:1.41.0-wmde.17
WDQS_IMAGE_NAME=wikibase/wdqs:0.3.137-wmde.17
WDQS_FRONTEND_IMAGE_NAME=wikibase/wdqs-frontend:wmde.17
ELASTICSEARCH_IMAGE_NAME=wikibase/elasticsearch:7.10.2-wmde.17
WIKIBASE_BUNDLE_IMAGE_NAME=wikibase/wikibase-bundle:1.41.0-wmde.17
QUICKSTATEMENTS_IMAGE_NAME=wikibase/quickstatements:wmde.17
WDQS_PROXY_IMAGE_NAME=wikibase/wdqs-proxy:wmde.17
MYSQL_IMAGE_NAME=mariadb:10.11
...
## Wikibase Configuration
WIKIBASE_PINGBACK=false
# wikibase.svc is the internal docker hostname, change this value to the public hostname
WIKIBASE_HOST=wikibase.imfd.cl
WIKIBASE_PORT=80
WIKIBASE_SCHEME=http
## WDQS-frontend Configuration
# wdqs-frontend.svc is the internal docker hostname, change this value to the public hostname
WDQS_FRONTEND_HOST=query.wikibase.imfd.cl
WDQS_FRONTEND_PORT=8000
## Quickstatements Configuration
# quickstatements.svc is the internal docker hostname, change this value to the public or local hostname
QS_PUBLIC_SCHEME_HOST_AND_PORT=http://qs.wikibase.imfd.cl
QUICKSTATEMENTS_HOST=qs.wikibase.imfd.cl
QUICKSTATEMENTS_PORT=8010
## ElasticSearch
## Comment out MW_ELASTIC_HOST to disable ElasticsSearch
## See https://github.com/wmde/wikibase-release-pipeline/blob/wmde.11/Docker/build/WikibaseBundle/LocalSettings.d.template/WikibaseCirrusSearch.php#L6
MW_ELASTIC_HOST=elasticsearch.svc
MW_ELASTIC_PORT=9200
I've not made any major changes to docker-compose.extra.yml
When I run this project locally, Wikibase works perfectly with WDQS and QS, but that's not the case when I'm running these services on a server, so I'm wondering if there's something I'm missing with the configuration?