]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Tweak Docker docos.
authorMichael R Sweet <msweet@msweet.org>
Fri, 5 Apr 2024 20:17:10 +0000 (16:17 -0400)
committerMichael R Sweet <msweet@msweet.org>
Fri, 5 Apr 2024 20:17:10 +0000 (16:17 -0400)
CHANGES.md
DOCKER.md [new file with mode: 0644]
INSTALL.md

index f40e81f01f58212592b95b46c3728c47a6395148..f50d3b0a1ae1a427df39db6cee418575714e0b8f 100644 (file)
@@ -16,6 +16,7 @@ Changes in CUPS v2.5b1 (TBA)
   to get successfully printed jobs (Issue #830)
 - Added driver filter to web interface (Issue #848)
 - Added support for PAM modules password-auth and system-auth (Issue #892)
+- Added Docker support (Issue #929)
 - Updated CUPS to require TLS support - OpenSSL, GNUTLS and LibreSSL are
   supported.
 - Updated CUPS to require ZLIB.
diff --git a/DOCKER.md b/DOCKER.md
new file mode 100644 (file)
index 0000000..fce831d
--- /dev/null
+++ b/DOCKER.md
@@ -0,0 +1,43 @@
+Creating an OpenPrinting CUPS Docker Image
+==========================================
+
+Prerequisites
+-------------
+
+- Install Docker on your system
+
+
+Building and Running
+--------------------
+
+To build and run CUPS using Docker, follow these steps:
+
+1. Clone this repository to your local machine.
+
+2. Navigate to the root directory of the cloned repository.
+
+3. Run the following command to start the Docker containers in the background:
+
+   ```
+   docker-compose up -d
+   ```
+
+4. To start interactive terminal in container
+
+    ```
+    docker exec -it cups /bin/bash
+    ```
+
+
+Additional Information
+----------------------
+
+1. Use 'admin' as CUPS username and 'admin' as password.
+
+2. You can find the CUPS configuration files and log files in the docker-config
+   directory of the repository on your local machine. Any changes made to these
+   files will be reflected in the CUPS service running inside the Docker
+   container.
+
+3. The CUPS web interface is accessible at http://localhost:631 from your web
+   browser.
index 0bfebce3e7bb1fff20f39db2cdd9682b32f6f169..452baadd662eef9f8484cd4faeae67db78b46c59 100644 (file)
@@ -185,35 +185,3 @@ logging:
   the messages to stderr.  Prefix a filename with "+" to append to an existing
   file.  You can include a single "%d" in the filename to embed the current
   process ID.
-
-Build Using Docker
-------------------
-
-### Prerequisites
-
-- Docker installed on your system
-
-### Build and Run
-
-To build and run CUPS using Docker, follow these steps:
-
-1. Clone this repository to your local machine.
-
-2. Navigate to the root directory of the cloned repository.
-
-3. Run the following command to start the Docker containers in the background:
-
-   ```bash
-   docker-compose up -d
-   ```
-
-4. To start interactive terminal in container
-    ```bash
-    docker exec -it cups /bin/bash
-    ```
-### Additional Information
-1. Use 'admin' as CUPS username and 'admin' as password.
-
-2. You can find the CUPS configuration files and log files in the docker-config directory of the repository on your local machine. Any changes made to these files will be reflected in the CUPS service running inside the Docker container.
-
-3. The CUPS web interface is accessible at http://localhost:631 from your web browser.
\ No newline at end of file