4

A tiny raspberry pi server for my group of friends. I wanted a place to upload photos, join calendars, store common interest books and notes, even set up a Diaspora, just use it different than we use the web. I've been delaying it for months, and it feels like a waste...

Comments
  • 1
    Try owncloud - it's free and have an official Docker image.
  • 1
    Was going to use nextcloud, for the lulz. Docker is in my "to fucking get it once for all" list
  • 3
    A lot of "magic* to it, but the easy way to get started with docker is:

    curl -sSL https://get.docker.com | sh

    Now you just need to start the container eg.

    docker run -d -p 80:80 owncloud:8.1
  • 4
    I would suggest to keep data on volume mounted to host, not inside container.
  • 0
    Thanks guys! I really like the feedback. After posting, I've restarted it, so there will be updates.
  • 0
  • 1
    @stereohisteria Otherwise data might get lost if your container gets thrown away. A typical docker is ment to be easily removed and started up again. You need to mount storage from the host system to keep persistent data.
  • 2
    @stereohisteria I agree with what @xenira wrote; additionaly you want to be able to easily upgrade owncloud version without losing your data - that is possible if you separate base image from data.
  • 0
    @LMtx @xenira makes all the sense
Add Comment