dockerfiles
dockerfiles copied to clipboard
A collection of Dockerfiles
running this: `docker run -d -p 631:631 -v /var/run/dbus:/var/run/dbus --name cupsd olbat/cupsd` Website root is available but no settings or jobs page. e.g. /admin, /jobs, /printers turns up "Not Found"...
In the repo olbat/cupsd it would be nice to have Samba pre-installed and pre-setup so that it broadcasts all printers to Windows computers by default. Sorry if this is already...
On the first try I 1. executed docker run -d -p 6031:631 -v /var/run/dbus:/var/run/dbus --name cupsd olbat/cupsd 2. Configured my HP LaserJet Pro M203dw 3. Executed lpr -H :6031 -P...
I try to setup the container on a Fedora 39 host using Portainer. My compose config: ``` version: '3.3' services: cupsd: image: olbat/cupsd container_name: cupsd volumes: - '/var/run/dbus:/var/run/dbus' - '/dev/bus/usb:/dev/bus/usb'...
passing the printer by volume like this -v /var/run/dbus:/var/run/dbus seems not to work anymore. i got it working again with `--device /var/run/dbus//` figured out the bus number and device number...
When creating a docker container, selecting a network as host conflicts with the system port and cannot be used. Therefore, we specified the port in the dockerfile.
Hello, can you add avahi-daemon package and enable avahi-daemon.service for discovery when the printer is shared ? Thanks
Hi, I'm trying to run your cupsd image in kubernetes and I've discovered that cups crashes when it encounters a too high LIMIT_NOFILE. I'd like to propose to add a...