Docker image including CUPS print server and printing drivers (installed from the Debian packages)
803
Docker image including CUPS print server and printing drivers (installed from the Debian packages)
| Port | Usage |
|---|---|
| 631/tcp | CUPS TCP Port |
| Volume | Usage |
|---|---|
| /etc/cups | CUPS config folder |
| /mnt/backends | Additional CUPS Backends config folder |
| /mnt/drivers | Aditional drivers needed to be installed |
| /var/log/cups | CUPS logs folder |
| /var/spool/cups | CUPS Spool files |
Note: The /mnt/drivers must have a install.sh script to install the additional drivers
Note: The admin user/password for the Cups server is print/print
docker run --name cups --restart unless-stopped --net host\
-v /path/to/configs:/etc/cups \
-v /path/to/backends:/mnt/backends \
-v /path/to/logs:/var/log/cups \
-v /path/to/drivers:/mnt/drivers \
-v /path/to/spool:/var/spool/cups \
-p 631:631 \
kaneymhf/docker-cups-simpres:latest
version: "3.2"
services:
cups:
image: kaneymhf/docker-cups-simpres:latest
ports:
- target: 631
published: 631
protocol: tcp
mode: host
volumes:
- /path/to/drivers:/mnt/drivers
- /path/to/configs:/etc/cups
- /path/to/backends:/mnt/backends
- /path/to/logs:/var/log/cups
- /path/to/spool:/var/spool/cups
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
Content type
Image
Digest
Size
292.6 MB
Last updated
over 5 years ago
docker pull kaneymhf/docker-cups