From 22ed6a6813c6c7f7106889c27289385d82f68ef5 Mon Sep 17 00:00:00 2001 From: Brandon Date: Thu, 8 Nov 2018 17:27:44 -0800 Subject: [PATCH] Fix up Docker_README --- Docker_README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Docker_README.md b/Docker_README.md index d382919..41837c7 100644 --- a/Docker_README.md +++ b/Docker_README.md @@ -8,11 +8,10 @@ docker run -d --name ytsm -p 80:8000 --volume /media/ytsm/data:/usr/src/ytsm/dat ``` ### Quick Rundown: - `--expose 80:8000` maps the Host OS port 80 to the container port 80 -- `--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) +- `--volume /media/ytsm/data:/usr/src/app/data` maps the data folder on the host to the container folder `data` +- `--volume /media/ytsm/coinfig:/usr/src/app/config` maps the config folder on the host to the container folder `config` - `chibicitiberiu/ytsm:latest` tells Docker which image to run the container with (in this case, the latest version) -**Note:** Replace `./downloads` in the command to where you want the downloads folder to be mapped to on the Host OS. Ex: `/path/to/host/download/folder:/path/to/container/download/folder` - Environment variables -----