Sign inSign up

martadinata666/nextcloud

By martadinata666

Updated almost 3 years ago

Default nextcloud apache with additional plugins

Image
0

891

martadinata666/nextcloud repository overview

Nextcloud

nextcloud-img

pipeline status

Additional modules
  • Face recognition ready (pdlib PHP modules builtin)
  • Cron built-in via yacron
  • notify-push included
  • ldap-common package
  • libfuse2 package installed (dep of appimage collabora)

Supported tags

  • XX.Y.Z (27.0.0, 27.0.1, ...)

Usage

docker run -d -p 8080:8080 martadinata666/nextcloud:<tag>

Compose with mariadb (Recomended)

version: '2'

volumes:
  db:

services:
  db:
    image: martadinata666/mariadb:lts
    restart: always
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    volumes:
      - db:/var/lib/mysql
    environment:
      - MARIADB_ROOT_PASSWORD=mariadbnc
      - MARIADB_PASSWORD=nextcloud
      - MARIADB_DATABASE=nextcloud
      - MARIADB_USER=nextcloud
  web:
    image: martadinata666/nextcloud:<tag>
    restart: always
    ports:
      - 8080:8080
    volumes:
      - htdocs:/var/www/html
    environment:
      - TZ=UTC
volumes:
    htdocs:

Tag summary

Content type

Image

Digest

sha256:ee648ef68

Size

433.4 MB

Last updated

almost 3 years ago

docker pull martadinata666/nextcloud