Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Was going to use nextcloud, for the lulz. Docker is in my "to fucking get it once for all" list
-
xenira7657yA 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 -
Thanks guys! I really like the feedback. After posting, I've restarted it, so there will be updates.
-
xenira7657y@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.
-
LMtx4187y@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.
Related Rants
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...
undefined
wk69