Hello guys, I love your project! To help improve it, here's a correction for the README.
When using the "Advanced mode" in Portainer to easily paste the environment variables, the current syntax doesn't work. The README shows colons : but it should use equals signs = instead.
Current syntax (doesn't work):
VIDEOS_FOLDER_DOCKER_HOST:/mnt/data/videos
TMP_DOWNLOAD_FOLDER_DOCKER_HOST:/mnt/data/hometube/tmp
YOUTUBE_COOKIES_FILE_PATH_DOCKER_HOST:/opt/cookies/youtube.txt
Correct syntax:
VIDEOS_FOLDER_DOCKER_HOST=/mnt/data/videos
TMP_DOWNLOAD_FOLDER_DOCKER_HOST=/mnt/data/hometube/tmp
YOUTUBE_COOKIES_FILE_PATH_DOCKER_HOST=/opt/cookies/youtube.txt
TZ=America/New_York
PORT=8501
COOKIES_FROM_BROWSER=chrome
Additional suggestion: It would also be practical to add these lines in the docker-compose.yml example:
container_name: hometube
ports:
- "${PORT}:8501"
environment:
TZ: "${TZ}"
COOKIES_FROM_BROWSER: "${COOKIES_FROM_BROWSER}"
This would help users quickly.
Thanks for this great project!
Hello guys, I love your project! To help improve it, here's a correction for the README.
When using the "Advanced mode" in Portainer to easily paste the environment variables, the current syntax doesn't work. The README shows colons
:but it should use equals signs=instead.Current syntax (doesn't work):
Correct syntax:
Additional suggestion: It would also be practical to add these lines in the docker-compose.yml example:
This would help users quickly.
Thanks for this great project!