Hi,
I'm stuck. I have a docker-compose.yaml
version: "3.8"
services:
scanner:
container_name: scanner
image: sbs20/scanservjs:latest
volumes:
/var/run/dbus:/var/run/dbus
/share/Scanned:/app/data/output
./config:/app/config
- ./conf:/usr/lib/scanservjs/config
ports:
'5880:8080'
restart: always
It's worked great for a year now. Finding my Epson ET-4550 every time with no issue. I was moving my docker container data and created Scanservjs from scratch. Now it can't find my printer. I suspect I must have upgraded but didn't think so.
The file /config/devices.json has my printer listed fine. Was mapped to /ap/config/devices.json. However when I look at the documentation it says I should be using /usr/scanservjs
I've tried a couple of the config. The sane driver one irscan.host.conf:/etc/sane.d/airscan.conf
Nothing works.
scanimage -L on my desktop though returns
device escl:http://172.29.66.31:443' is a Epson ET-4550 Series platen,adf scanner deviceepson2:net:172.29.66.31' is a Epson PID 1101 flatbed scanner
device `airscan:e1:EPSON ET-4550 Series' is a eSCL EPSON ET-4550 Series ip=172.29.66.31
which is in the devices.json fine as well as other parameters. This is a WiFi printer rather than a wired printer.
If it can't find it am I able to just define it and force it to use the stored data?
Printer and scanner work fine on the network. I can scan using Linux Mint.
Hi, I'm stuck. I have a docker-compose.yaml version: "3.8" services: scanner: container_name: scanner image: sbs20/scanservjs:latest volumes:
- ./conf:/usr/lib/scanservjs/config
ports:
It's worked great for a year now. Finding my Epson ET-4550 every time with no issue. I was moving my docker container data and created Scanservjs from scratch. Now it can't find my printer. I suspect I must have upgraded but didn't think so.
The file /config/devices.json has my printer listed fine. Was mapped to /ap/config/devices.json. However when I look at the documentation it says I should be using /usr/scanservjs I've tried a couple of the config. The sane driver one irscan.host.conf:/etc/sane.d/airscan.conf Nothing works. scanimage -L on my desktop though returns device
escl:http://172.29.66.31:443' is a Epson ET-4550 Series platen,adf scanner device
epson2:net:172.29.66.31' is a Epson PID 1101 flatbed scanner device `airscan:e1:EPSON ET-4550 Series' is a eSCL EPSON ET-4550 Series ip=172.29.66.31 which is in the devices.json fine as well as other parameters. This is a WiFi printer rather than a wired printer.If it can't find it am I able to just define it and force it to use the stored data? Printer and scanner work fine on the network. I can scan using Linux Mint.
So now I'm stuck. Any ideas?