Docker-cups/README.md
sthope b9a1a55b3e
Some checks failed
continuous-integration/drone/push Build is failing
update
2022-08-07 20:36:46 +02:00

34 lines
747 B
Markdown

# CUPS Docker Image
## Architectures
- amd64
- arm32v7
- arm64v8
## Usage
### Start the container
```bash
docker run -d --restart always -p 631:631 -v $(pwd):/etc/cups sthopeless/cups:latest
```
### Configuration
Login in to CUPS web interface on port 631 (e.g. https://localhost:631) and configure CUPS to your needs.
Default credentials: admin / admin
To change the admin password set the environment variable _ADMIN_PASSWORD_ to your password.
```bash
docker run -d --restart always -p 631:631 -v $(pwd):/etc/cups -e ADMIN_PASSWORD=mySecretPassword sthopeless/cups:latest
```
### Testing
```bash
docker run -d --restart unless-stopped -p 631:631 -e ADMIN_PASSWORD=admin -e ADMIN_USERNAME=admin git.sthope.dev/sthope/cups:latest
```