Jump to content

Nextcloud Hub 7 (28.0.2)


Recommended Posts

Hidden Content

    Give reaction to this post to see the hidden content.
 gives you access to all your files wherever you are.

Where are your photos and documents? With Nextcloud you pick a server of your choice, at home, in a data center or at a provider. And that is where your files will be. Nextcloud runs on that server, protecting your data and giving you access from your desktop or mobile devices. Through Nextcloud you also access, sync and share your existing data on that FTP drive at the office, a Dropbox or a NAS you have at home.

Hidden Content

    Give reaction to this post to see the hidden content.

 

Info:

Quote

Hidden Content

    Give reaction to this post to see the hidden content.

Docker Compose:

Quote

---
version: '3.5'
volumes:
  db:
  nextcloud:
  
services:
  db:
    image: mariadb:10.4.5
    command: --transaction-isolation=READ-COMMITTED --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --max-connections=512 --binlog-format=ROW
    restart: unless-stopped
    stop_grace_period: 5s
    security_opt: # see

Hidden Content

    Give reaction to this post to see the hidden content.

      - seccomp:unconfined
      - apparmor:unconfined
    volumes:
      - /path/to/nextcloud/database:/var/lib/mysql:Z
    environment:
      MYSQL_AUTO_UPGRADE: "1"
      MYSQL_INITDB_SKIP_TZINFO: "1"
      MYSQL_DATABASE: "nextcloud"
      MYSQL_USER: "nextcloud"
      MYSQL_PASSWORD: "XXXXXXXXXXXXXXXXX"
      MYSQL_ROOT_PASSWORD: "XXXXXXXXXXXXXXXXX"

  adminer:
    image: adminer
    restart: always
    ports:
      - 6880:8080

  nextcloud:
    image: lscr.io/linuxserver/nextcloud:latest
    container_name: nextcloud
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/nextcloud/config:/config
      - /path/to/nextcloud/database:/data
    ports:
      - 443:443
    restart: unless-stopped
 

 

Link to comment

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...