From 82c54e4c8015a0713236992f1b7774d63307a89e Mon Sep 17 00:00:00 2001 From: Roberto Orgiu Date: Thu, 4 Apr 2024 09:06:39 +0200 Subject: [PATCH] [BugFix] Update README.md Without the change, Docker would return the following error: docker: Error response from daemon: pull access denied for prusaslicer-novnc, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80b2af8..62aadae 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ If you're using unraid, open your Docker page and under `Template repositories`, #### Docker To run this image, you can run the following command: `docker run --detach --volume=prusaslicer-novnc-data:/configs/ --volume=prusaslicer-novnc-prints:/prints/ -p 8080:8080 -e SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt" ---name=prusaslicer-novnc prusaslicer-novnc` +--name=prusaslicer-novnc mikeah/prusaslicer-novnc` This will bind `/configs/` in the container to a local volume on my machine named `prusaslicer-novnc-data`. Additionally it will bind `/prints/` in the container to `superslicer-novnc-prints` locally on my machine, it will bind port `8080` to `8080`, and finally, it will provide an environment variable to keep Prusaslicer happy by providing an `SSL_CERT_FILE`.