We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using the docker run command as in the readme. The container keeps restarting. I am running on ARM architecture.
docker run -d --name=davdebrid -p 8081:8080 --restart unless-stopped -e DEBRID_ID=debridlink -e DEBRID_API_KEY=XXXXXXX -e DATA_FOLDER=/data -v /docker/davdebrid:/data arvida42/davdebrid:latest
Log:
Node.js v20.18.0 undefined:0 [Error: SQLITE_CANTOPEN: unable to open database file Emitted 'error' event on Database instance at: ] { � errno: 14, code: 'SQLITE_CANTOPEN' }
hostnamectl: Static hostname: vm Icon name: computer-vm Chassis: vm Machine ID: 9fddee2a1af749ca874add396b63a0e9 Boot ID: 9c8a3efe704b46a0bdfcadd19669d6de Virtualization: kvm Operating System: Oracle Linux Server 8.10 CPE OS Name: cpe:/o:oracle:linux:8:10:server Kernel: Linux 5.15.0-301.163.5.2.el8uek.aarch64 Architecture: arm64
The text was updated successfully, but these errors were encountered:
It is a permissions issue, I chmod 777 the data directory and it is working.
Sorry, something went wrong.
You can use a volume instead of chmod 777 your directory
docker volume create davdebrid_data docker run -d \ --name=davdebrid \ -p 8080:8080 \ --restart unless-stopped \ -e DEBRID_ID=debridlink \ -e DEBRID_API_KEY=apikey \ -e DATA_FOLDER=/data \ -v davdebrid_data:/data \ arvida42/davdebrid:latest
No branches or pull requests
I am using the docker run command as in the readme. The container keeps restarting. I am running on ARM architecture.
docker run -d
--name=davdebrid
-p 8081:8080
--restart unless-stopped
-e DEBRID_ID=debridlink
-e DEBRID_API_KEY=XXXXXXX
-e DATA_FOLDER=/data
-v /docker/davdebrid:/data
arvida42/davdebrid:latest
Log:
hostnamectl:
Static hostname: vm
Icon name: computer-vm
Chassis: vm
Machine ID: 9fddee2a1af749ca874add396b63a0e9
Boot ID: 9c8a3efe704b46a0bdfcadd19669d6de
Virtualization: kvm
Operating System: Oracle Linux Server 8.10
CPE OS Name: cpe:/o:oracle:linux:8:10:server
Kernel: Linux 5.15.0-301.163.5.2.el8uek.aarch64
Architecture: arm64
The text was updated successfully, but these errors were encountered: