From 44a8dbd6bf7b3aa3fc51764a4ef02f6f15c4430d Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Wed, 5 Jun 2024 17:34:02 -0400 Subject: [PATCH] docs: fix broken Docker run command Mounting the current directory as /app in Docker overwrites the entire /app directory, which can cause node_modules to disappear. Instead, tell users to mount the current directory as /app/certs to avoid this. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0430487..3fbc82f 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ This script can also be run in a Docker container. 1. `git clone https://github.com/PretendoNetwork/SSSL` 2. `cd SSSL` 3. `docker build . -t sssl` -4. `docker run -it --rm -v .:/app sssl` or `docker run -it --rm -v .:/app sssl -i` +4. `docker run -it --rm -v .:/app/certs sssl -g3 /app/certs/CACERT_NINTENDO_CA_G3.der -o /app/certs` ## Configuration