I now want to install a print server on my OMV7 and have decided on Docker/Compose. Under OMV5, I had CUPS installed natively, which worked well. I've tried various Docker images, but none of them work for CUPS... Most of them require a username/password, but no combination I know of has been accepted.
Than I found my currently following image:
Code
# version: '3.5'
services:
cups:
image: chuckcharlie/cups-avahi-airprint:latest
container_name: cups
network_mode: host
volumes:
- /srv/dev-disk-by-uuid-fb1e45f4-ea1c-4de9-b916-189ef60fe594/Docker/_appdata/chuckcharlie/services:/services
- /srv/dev-disk-by-uuid-fb1e45f4-ea1c-4de9-b916-189ef60fe594/Docker/_appdata/chuckcharlie/config:/config
ports:
- 631:631
environment:
CUPSADMIN: "print"
CUPSPASSWORD: "print"
restart: unless-stopped
Display More
(From here)
The page 192.xxx.x.xx:631/ opens (OpenPrinting CUPS 2.4.11), but after clicking on 'Administration (Verwaltung)' and entering the username/password (print/print), only 'Internal Server Error' appears in the Window.
Example click on 'Klassen' :
Classes
Classes Error
Unable to get class list
QuoteBad file descriptor
Maybe I have an error in the file or user permissions (appuser) or an incorrect entry in the shared folders...
Need Help ...