You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as soon as you touch the anisette container (restart etc) the macless-haystack is returning 502 instead of the locations.
However, searching the anisette issues (Dadoum/anisette-v3-server#8), it turned out that adding the user to both docker lines fixes the issue.
You can find out your UID by: id -u
And your GID by: id -g
The docker line for the anisette server then has to be:
Hi,
as soon as you touch the anisette container (restart etc) the macless-haystack is returning 502 instead of the locations.
However, searching the anisette issues (Dadoum/anisette-v3-server#8), it turned out that adding the user to both docker lines fixes the issue.
You can find out your UID by:
id -u
And your GID by:
id -g
The docker line for the anisette server then has to be:
docker run -d --restart always --name anisette -p 6969:6969 --volume anisette-v3_data:/home/Alcoholic/.config/anisette-v3/lib/ --network mh-network --user UID:GID dadoum/anisette-v3-server
and the line for the macless-haystack container has to be:
docker run -it --restart unless-stopped --name macless-haystack -p 6176:6176 --volume mh_data:/app/endpoint/data --network mh-network --user 0:0 christld/macless-haystack
Hope it helps!
The text was updated successfully, but these errors were encountered: