26 lines
708 B
YAML
26 lines
708 B
YAML
#https://medium.com/@davidclaeys/scanservjs-make-your-own-scan-server-21539f64265c
|
|
#version: "3"
|
|
services:
|
|
scanservjs:
|
|
image: sbs20/scanservjs:latest
|
|
privileged: true
|
|
environment:
|
|
- UID=1000
|
|
- GID=1000
|
|
- SANED_NET_HOSTS=10.0.0.18
|
|
- AIRSCAN_DEVICES="Brother Ds-2600"
|
|
volumes:
|
|
- ./sane/images:/var/lib/scanservjs/output
|
|
- ./sane/config:/etc/scanservjs
|
|
- /var/run/dbus:/var/run/dbus
|
|
ports:
|
|
- 8080:8080
|
|
restart: unless-stopped
|
|
scantopl:
|
|
image: ghcr.io/celedhrim/scantopl:master
|
|
environment:
|
|
- PLURL=http://10.0.0.135:8777
|
|
- PLTOKEN=f054af8ea79f6c1b3039991f264d37b8ef5ff112
|
|
volumes:
|
|
- ./sane/images:/output
|