docker-nextcloud-extended/README.md
jiriks74 ec5d88f295
Some checks failed
Build / build (push) Has been cancelled
fix(bz2-php): Missing PHP bz2 module in upstream image
fixes `This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them: bz2`
2024-01-18 15:01:25 +01:00

1.8 KiB

docker-nextcloud-extended

Docker Pulls Docker Stars Docker Size

Nextcloud's docker image with extra utilities

Image availabe on DockerHub

Utilities added

  • ffmpeg - Used by Video converter app
  • aria2 and youtube-dl - Used by NCDownloader app
  • libmagickcore-dev - To fix Module php-imagick in this instance has no SVG support error
  • libbz2-dev PHP module - To fix This instance is missing some recommended PHP modules. For improved performance and better compatibility it is highly recommended to install them: bz2

Tips

Cron job

If you're getting error simmilar to Last job execution ran a day ago. Something seems wrong. try to add this to your cron tab (sudo crontab -e):

0,5,10,15,20,25,30,35,40,45,50,55 * * * * docker exec -u www-data <container_name> php -f /var/www/html/cron.php
  • Of course don't forget to change the <container_name> to your nextcloud's container name (eg. docker-nextcloud_app)