Skip to content

x3m444/docker-recordurbate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-recordurbate

original project: https://github.com/oliverjrose99/Recordurbate. I just changed some things so it would run nice in a docker container.

How to use

docker-compose

Download docker-compose if you dont have that already

pip install docker-compose

Download the repo

git clone https://github.com/LootScooper/docker-recordurbate.git
cd docker-recordurbate

Then you edit the docker-compose.yml with an editor of your choice. And change " - /srv/sto1/recordubate:/videos" on line 9. You need to change "/srv/sto1/recordubate" to your video path.
Put streamer or streamers in config.json
Run!!

docker-compose up

Or if you want to run your container detached (In the background)

docker-compose up -d

https://docs.docker.com/compose/

docker

git clone https://github.com/LootScooper/docker-recordurbate.git
cd docker-recordurbate/recordurbate
docker build . -t recordurbate
docker start -d --restart unless-stopped -v your-config-folder:/data -v my-video-folder:/videos recordurbate

Make sure you copy config.json and youtube-dl.config to your config folder. And to put streamer or streamers in config.json

Example config

{
  "youtube-dl_cmd": "youtube-dl",
  "auto_reload_config": true,
  "rate_limit": true,
  "rate_limit_time": 5,
  "streamers": ["streamer1", "streamer2", "streamer3"]
}
{
  "youtube-dl_cmd": "youtube-dl",
  "auto_reload_config": true,
  "rate_limit": true,
  "rate_limit_time": 5,
  "streamers": ["streamer1"]
}

Todo

  • support environment variables

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.6%
  • Dockerfile 3.4%