initial commit

This commit is contained in:
Grizouille
2025-11-06 22:42:49 +01:00
parent 72dfd1e21e
commit 6399ab4af2
50 changed files with 4044 additions and 233 deletions

View File

@@ -0,0 +1 @@
../../Dockerfile

View File

@@ -0,0 +1 @@
The Dockerfile uses `COPY . /app`. So the Dockerfile needs to be placed in the root directory of the project.

View File

@@ -0,0 +1,14 @@
---
services:
deezer-downloader:
build: ../../
environment:
- DEEZER_COOKIE_ARL=changeme
volumes:
- ./downloads:/mnt/deezer-downloader
ports:
- "5000:5000"
security_opt:
- no-new-privileges
cap_drop:
- ALL

View File