├── .dockerignore ├── .github └── workflows │ └── image.yml ├── Dockerfile ├── README.md ├── docker-entrypoint.sh ├── docker-healthcheck.sh ├── drivers ├── README.md ├── foomatic-db.sh ├── foomatic.sh └── hplip.sh ├── examples ├── foomatic │ └── Dockerfile └── hplip │ └── Dockerfile ├── fakePkg.sh ├── functions ├── patches └── README.md └── pre_build ├── README.md ├── armel └── cert.sh └── armhf └── cert.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .github 2 | -------------------------------------------------------------------------------- /.github/workflows/image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/.github/workflows/image.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker-healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/docker-healthcheck.sh -------------------------------------------------------------------------------- /drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/drivers/README.md -------------------------------------------------------------------------------- /drivers/foomatic-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/drivers/foomatic-db.sh -------------------------------------------------------------------------------- /drivers/foomatic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/drivers/foomatic.sh -------------------------------------------------------------------------------- /drivers/hplip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/drivers/hplip.sh -------------------------------------------------------------------------------- /examples/foomatic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/examples/foomatic/Dockerfile -------------------------------------------------------------------------------- /examples/hplip/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/examples/hplip/Dockerfile -------------------------------------------------------------------------------- /fakePkg.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | source ${PREFIX}/functions 4 | fakePkg $1 $2 5 | -------------------------------------------------------------------------------- /functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/functions -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/patches/README.md -------------------------------------------------------------------------------- /pre_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/pre_build/README.md -------------------------------------------------------------------------------- /pre_build/armel/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/pre_build/armel/cert.sh -------------------------------------------------------------------------------- /pre_build/armhf/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobalberty/cups-docker/HEAD/pre_build/armhf/cert.sh --------------------------------------------------------------------------------