Skip to content

Commit

Permalink
incluse startup scripts and external compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
bigsk1 committed Jul 4, 2024
1 parent 8f476c1 commit 53dc05e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
ports:
- "8000:8000"
volumes:
- ./Downloads:/root/Downloads
- ./docker/Downloads:/root/Downloads
restart: unless-stopped

frontend:
Expand All @@ -16,7 +16,7 @@ services:
depends_on:
- backend
volumes:
- ./Downloads:/usr/share/nginx/html/downloads
- ./docker/Downloads:/usr/share/nginx/html/downloads
restart: unless-stopped

volumes:
Expand Down
4 changes: 4 additions & 0 deletions start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
docker-compose -f docker-compose.external.yml up -d
echo YT-DLP WebUI is now running!
echo Access the application at http://localhost:3000
4 changes: 4 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash
docker-compose -f docker-compose.external.yml up -d
echo "YT-DLP WebUI is now running!"
echo "Access the application at http://localhost:3000"

0 comments on commit 53dc05e

Please sign in to comment.