this post was submitted on 03 May 2024
89 points (90.1% liked)

Selfhosted

39245 readers
296 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

After months of waiting, I finally got myself an instance with Libre Cloud. I was expecting basic file storage with a few goodies but boy, this is soooo much more. I am amaze by how complete this is!!! Apps let me configure my instance to fit everything I need, my workflow is now crazy fast and I can finally say goodbye to gdrive, gsuite, trello, calendar, etc. All of this, with 1tb while not giving any of ma data to some evil business for... 10$ cad a month!? Can't believe this is not what every organisation are using.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 13 points 4 months ago (11 children)

Really a pain in the ass to set up and tweak to your liking. After you overcome that hurdle, it runs relatively good.

[–] [email protected] -4 points 4 months ago (2 children)

docker-compose up -d

Oof what a pain this was! Glad it finally works and I can move on with my life!!

[–] [email protected] 5 points 4 months ago

TIL "setting up and tweaking Nextcloud to your liking" = starting docker

[–] [email protected] -5 points 4 months ago (1 children)

Hey hey hey. That’s not fair. You also have to

sudo apt install docker.io docker-compose

[–] [email protected] 5 points 4 months ago

You really should not install those from the distro repositories. They are far less up-to-date. This is the official documentation for adding the Docker repository to a Debian system, there's one for Ubuntu as well. You can just copy and paste the entire code block from step 1. Afterwards you can just use apt to install it, but you want to use this command to make sure you get everything you need:

sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Installing it this way will mean you need to use the docker compose command, not docker-compose which is deprecated.

load more comments (8 replies)