Add README.md

This commit is contained in:
TheErrorExe 2025-04-27 00:02:41 +02:00
commit afa4b5997e

27
README.md Normal file
View File

@ -0,0 +1,27 @@
# Setup ReviveTube in a Docker
First, install docker [here](https://docs.docker.com/get-started/get-docker/)
Then run
```bash
wget https://cloud.theerrorexe.dev/revivetube-docker.tar
docker load -i revivetube-docker.tar
```
Now Create a docker-compose.yml with this content:
```diff
version: "3.9"
services:
revivetube:
image: theerrorexe/revivetube:latest
ports:
- "5000:5000"
environment:
- GOOGLE_API_TOKEN=AIzaSyD1o6X2nt1YDFtk7aulb0jShlq_USFK1no
volumes:
- .:/app
restart: unless-stopped
```
Now run `sudo docker-compose up -d` or `sudo docker compose up -d`
ReviveTube should now run on http://localhost:5000