Were encountering errors when running this command docker-compose up -d elastic8, such as network problems (share_network helped), still had other issues and after specifying platform it removed incompatible platforms warnings (arm with amd) and set elastic8 up without troubles.
When was testing the share project in osf (here http://localhost:5000/search) could not see any of my projects and encountered errors this fix helped me to solve them:
in docker-compose.yml:
in elastic8 service under environment category removed this line:
- cluster.initial_master_nodes=singlenode
add this line instead:
- discovery.type=single-node
Were encountering errors when running this command
docker-compose up -d elastic8
, such as network problems (share_network helped), still had other issues and after specifying platform it removed incompatible platforms warnings (arm with amd) and set elastic8 up without troubles.When was testing the
share
project inosf
(here http://localhost:5000/search) could not see any of my projects and encountered errors this fix helped me to solve them: in docker-compose.yml:in elastic8 service under environment category removed this line:
- cluster.initial_master_nodes=singlenode
add this line instead:- discovery.type=single-node