Nextcloud's docker image with extra utilities
Go to file
Jiří Štefka 7fdf7d0f5c
Some checks failed
Build / build (push) Failing after 8s
Update README.md
2024-04-19 13:49:26 +02:00
.gitea/workflows feat(ci/cd): Automatic builds based on latest image (#1) 2024-04-19 05:43:39 +02:00
.envrc feat(nix): Add basic Nix environment setup 2024-04-19 05:47:23 +02:00
.gitignore feat(ci/cd): Automatic builds based on latest image (#1) 2024-04-19 05:43:39 +02:00
default.nix feat(nix): Add basic Nix environment setup 2024-04-19 05:47:23 +02:00
Dockerfile fix(Dockerfile): Remove obsolete bz2 setup 2024-04-19 12:41:15 +02:00
LICENSE Initial commit 2023-09-19 19:10:06 +02:00
README.md Update README.md 2024-04-19 13:49:26 +02:00

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

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)