Initial commit: XDL Twitter/X video downloader
This commit is contained in:
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
backend:
|
||||
build: ./backend
|
||||
restart: unless-stopped
|
||||
env_file: .env
|
||||
volumes:
|
||||
- /home/xdl/xdl_videos:/home/xdl/xdl_videos
|
||||
- ./backend/xdl.db:/app/xdl.db
|
||||
environment:
|
||||
- DATABASE_URL=sqlite+aiosqlite:///./xdl.db
|
||||
|
||||
frontend:
|
||||
build: ./frontend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "127.0.0.1:8580:80"
|
||||
depends_on:
|
||||
- backend
|
||||
Reference in New Issue
Block a user