Hi
I have an image of Searx for the raspberry pi that runs fine as a container with
docker run -d --name searx -p 8888:8888 --restart=“always” --detach=true spybyte/spybyte/rpi-searx:latest
but when I try to deploy it as a stack using
version: ‘3’
services:
searx:
image: spybyte/rpi-searx:latest
ports:
- 8887:8888
deploy:
mode: replicated
replicas: 1
placement:
constraints: [node.platform.arch==arm]
networks:
default:
external:
name: cluster_net
I get a node suitable node available, even though its just ran.
am I going something wrong?
cheers