From 3b608b80b48c844e6d873eecef4b30e83ab49ff3 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 3 Nov 2018 11:14:51 -0700 Subject: [PATCH 1/2] Updated Docker_README to reflect config changes that have occurred --- Docker_README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker_README.md b/Docker_README.md index daa479c..cb90e1d 100644 --- a/Docker_README.md +++ b/Docker_README.md @@ -4,7 +4,7 @@ Running with Docker Sample Run command ----- ```bash -docker run -d --name ytsm -p 80:8000 --env-file sqlite3.env.env --volume ./downloads:/usr/src/app/data/downloads chibicitiberiu/ytsm:latest +docker run -d --name ytsm -p 80:8000 --volume ./downloads:/usr/src/app/data/downloads chibicitiberiu/ytsm:latest ``` ### Quick Rundown: - `--expose 80:8000` maps the Host OS port 80 to the container port 80 From 85e9d11f1a298ae0e039bdf81a8f08a9a558d742 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 3 Nov 2018 11:18:33 -0700 Subject: [PATCH 2/2] Updated Docker_README to reflect config changes that have occurred --- Docker_README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Docker_README.md b/Docker_README.md index cb90e1d..ce98824 100644 --- a/Docker_README.md +++ b/Docker_README.md @@ -8,7 +8,6 @@ docker run -d --name ytsm -p 80:8000 --volume ./downloads:/usr/src/app/data/down ``` ### Quick Rundown: - `--expose 80:8000` maps the Host OS port 80 to the container port 80 -- `--env-file sqlite3.env.env` points to the env file with the desired variable settings (saves from typing them in the command line) - `--volume ./downloads:/usr/src/app/data/downloads` maps the downloads folder of the current directory to the container folder `downloads` (where you could set the program to download to) - `chibicitiberiu/ytsm:latest` tells Docker which image to run the container with (in this case, the latest version)