Go to file
2022-08-17 16:17:12 +00:00
_service Accepting request 994320 from home:kukuk:container 2022-08-10 12:05:21 +00:00
.gitattributes Accepting request 994320 from home:kukuk:container 2022-08-10 12:05:21 +00:00
.gitignore Accepting request 994320 from home:kukuk:container 2022-08-10 12:05:21 +00:00
cups-image.changes - Adjust some wordings/documentation 2022-08-10 13:14:38 +00:00
docker-entrypoint.sh Accepting request 994320 from home:kukuk:container 2022-08-10 12:05:21 +00:00
Dockerfile - Adjust some wordings/documentation 2022-08-10 13:14:38 +00:00
README.md - Adjust some wordings/documentation 2022-08-10 13:14:38 +00:00

CUPS Container Image

Description

This container image contains the latest cups server from openSUSE Tumbleweed.

Usage

Start the container


podman run -d --rm -p 631:631 --name cups registry.opensuse.org/opensuse/cups:latest

Configuration

This CUPS container comes with a default cups configuration which allows remote access for adminitration. An own configuration can be provided as volume: -v /srv/cups:/etc/cups, where the example assumes you have your cups configuration stored in /srv/cups.

For further configuration, login to the CUPS web interface on port 631 (e.g. https://localhost:631) and configure CUPS to your need. IMPORTANT: you need to use https://, else cups will do a wrong redirect!

The default administration account is: admin

For security reasons there is no default password, it has to be set with the environment variable ADMIN_PASSWORD.


podman run -d --rm -p 631:631 -v /srv/cups:/etc/cups -e ADMIN_PASSWORD=mySecretPassword --name cups registry.opensuse.org/opensuse/cups:latest