CUPS (Common UNIX Printing System) Docker Image
404
Note: This project is currently under development.
The CUPS Docker image offers a convenient solution for running CUPS, a printing system designed for Unix-like operating systems, within a containerized environment. CUPS facilitates the management of printers and print jobs, both locally and across networks.
To run the CUPS Docker container, use the following command:
sudo docker run --rm -d --name cups -p <port>:631 \
-e CUPS_ADMIN=<username> -e CUPS_PASSWORD=<password> \
rudraiitm/cups:latest
Replace <username> and <password> with your desired CUPS admin username and password.
Replace <port> with port on which you want to expose CUPS web interface.
To ssh into docker container:
docker exec -it cups /bin/bash
Github Repository
OpenPrinting CUPS Official Website
This Docker image provides a straightforward way to set up and manage a printing system in a containerized environment, suitable for various applications requiring printer management capabilities.
Content type
Image
Digest
sha256:9164feb41…
Size
132.4 MB
Last updated
about 2 years ago
docker pull rudraiitm/cups