Post

Raspberry Pi as your Cloud Storage - With Nextcloud & Docker

Raspberry Pi as your Cloud Storage - With Nextcloud & Docker

To install Nextcloud in a Pi, we need to include a working DB.

For example, lets use MariaDB in the installation.

Tt supports ARM/x86 processors, unlike mysql.

Nextcloud for Raspberry Pi

Installing Docker Stuff

First things first.

Lets get ready for SelfHosting

Get Docker and Docker-Compose ready in your Rpi.

Deploy Nextcloud with Docker

Let’s use Docker-Compose to have nextcloud server installed without any complications.

See the Nextcloud config file and more here.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#version: '2'

volumes:
  nextcloud:
  db:

services:
  db:
    image: linuxserver/mariadb
    restart: always
    container_name: nextclouddb
    volumes:
      - /home/Docker/nextcloud/db:/var/lib/mysql
    environment:
      - MYSQL_INITDB_SKIP_TZINFO=1
      - MYSQL_ROOT_PASSWORD=rootpass
      - MYSQL_PASSWORD=ncpass
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
#    networks: ["nginx_nginx_network"] #optional 

  app:
    image: nextcloud #latest #27.0.0
    container_name: nextcloud
    restart: always
    ports:
      - 8080:80
    links:
      - db
    volumes:
      - /home/Docker/nextcloud/html:/var/www/html
    environment:
      - MYSQL_PASSWORD=ncpass
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_HOST=db
      - NEXTCLOUD_TRUSTED_DOMAINS=http://0.0.0.0:8080 #https://nextcloud.yourduckdnsubdomain.duckdns.org/
#    networks: ["nginx_nginx_network"] #optional 
 
# networks: #optional
#   nginx_nginx_network: #optional
#     external: true #optional

FAQ

Remember to update the list of trusted domains so that other devices can log, we can see the current list with:

1
sudo docker exec --user www-data nextcloud_container php occ config:system:get trusted_domains

To add a new domain/internal/local ip, simply pass it in the end of this CLI command:

1
2
sudo docker exec --user www-data nextcloud_container php occ config:system:set trusted_domains 7 --value 192.168.1.22:8080
#sudo docker exec --user www-data nextcloud_container php occ config:system:set trusted_domains 7 --value nextcloud.yourgreatname.duckdns.org

Remember that you can check your device (the RPi here) internal IP adress with:

1
2
hostname -I
#ifconfig

To access nextcloud while being out of home, simply configure your VPN, for example with tailscale, and add the internal Ip address assign by tailscale as shown two commands before.

You can also see your files with the WebDav feature, just add in your file manager:

1
2
davs://example.com/nextcloud/remote.php/dav/files/USERNAME/
#davs://nextcloud.yourgreatname.duckdns.org/nextcloud/remote.php/dav/files/USERNAME/

If your server connection is not HTTPS-secured, use dav:// instead of davs://.

Alternatively - you can try FileBrowser

How to use a External Drive with NextCloud

1
2
3
4
lsblk
lsblk -a
lsblk -f
sudo fdisk -l

Once you have identify the drive, format it.

For example, with NTFS:

1
2
#sudo mkfs.ntfs /dev/sda1 #make sure it is /dev/sda1 as well for you
#sudo mkfs.ntfs -Q /dev/sda1 #quick version

Then, mount the drive:

1
2
sudo mkdir /usbdrive
sudo mount /dev/sda1 /usbdrive

If you df -h - you will see the drive mounted.

You can always copy the data with:

1
2
#sudo cp -R ./files/* /mnt/mydrive/
sudo rsync -avh --progress ./files/* /mnt/mydrive/ #with progress

And you can check the full size of the copied folder:

1
du -sh ./files

Other Interesting Selhostable Tools

  1. Cosmos Server: It will ask you to connect to a DB (it can create one itself)

Use this config file. See the UI at http://192.168.0.12:800/cosmos-ui/newInstall

  1. NGINX Proxy Manager: To get https certificates for Nextcloud or any other docker service. Config file.

  2. See also: Portainer, Yatch, Dockge or CasaOS.

CasaOS: Community-based open source software focused on delivering simple personal cloud experience around Docker ecosystem.

This post is licensed under CC BY 4.0 by the author.