10

I have tried installing it with docker on Ubuntu 20.04 and 22.04 LTS but cannot seem to get it working. The build keeps erroring out with docker errors.

top 25 comments
sorted by: hot top controversial new old
[-] corne@lemmy.world 2 points 2 years ago

Will self-hosting Lenny have the limitation that you’ll be missing a lot of comments when subscribing to magazines from other instances? I am considering it tough

[-] redcalcium@c.calciumlabs.com 1 points 2 years ago* (last edited 2 years ago)

Post your docker-compose file and error message here so people can actually provide advises for your setup.

[-] marsta@lemmy.world 1 points 2 years ago

If you post your configs and errors we might be able to help you. I set up a vm with docker compose and proxy it through traefik instead of nginx

[-] Coeus@coeus.sbs 1 points 2 years ago
[-] qazwsxedcrfv000@lemmy.unknownsys.com 1 points 2 years ago* (last edited 2 years ago)

I spawned up a LXC in my Proxmox for it as soon as the Reddit fiasco began. Originally tried the Docker way, failed... My Docker is installed the official way by the way. Tried the "install from scratch" way, also failed... Finally gave the source a casual read and decided to compile it from source.

The pict-rs bit is a hassle. It has taken me some time to get all the dependencies right and compile Imagemagick version 7 for Ubuntu 22.04 from source. But it worked eventually.

I then installed the rust toolchain and checked out the latest stable release tag at the time aka 0.17.3 and compiled lemmy. Nothing went astray and I followed the remaining steps in the "install from scratch" doc to complete the setup. P.S. Oh right you need to make the lemmy PostgreSQL user SUPERUSER otherwise the database migration script would not work. A commit was already made to make it unnecessary. It will make its way to 0.18.0 release I guess.

I initially encountered some issues in federation. Subscriptions stuck at pending for remote instances, regardless of their size and traffic. I tried many ways and still it did not work. I have thought of axing the container and restarting from the beginning.

While I was weighing my options, I found an advice in an issue at lemmy GitHub repo that suggested the problem was leftover from previous hostname changes and dumping the existing database and recreating from sketch would help. I have indeed altered the hostname once or twice during setup. So I followed the advice and federation is working now.

So far not a butter smooth experience but not the worst I have ever encountered. It does take some troubleshooting capacity and patience. But heck selfhosting has been like that since time immemorial.

[-] yay@lemmy.world 1 points 2 years ago

I got mine running via Docker by copying the docker-compose, nginx, and lemmy.hjson files from the lemmy-ansible repo. Everything is working so far except votes and comments from other instances. They won't sync for some reason.

[-] jeena@kbin.social 1 points 2 years ago

Here is mine https://gist.github.com/jeena/6179470a8d616455f30635a5c71f5f64 which had a similar problem with the comments, although I couldn't post comments on my own instance either.

For me the thing was that I had to add:

map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      close;
}

and

        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;

And also change the nginx in the docker to port 8080 so my normal nginx could keep running on 80 and handle all the ssl certificate stuff.

My setup is:

Browser -> native Nginx -> docker Nginx -> lemmy

[-] gregw@lemmy.gregw.us 1 points 2 years ago
[-] TheButtonJustSpins@infosec.pub 1 points 2 years ago

What are the errors?

[-] seang96@spgrn.com 1 points 2 years ago

If your using docker I recommend getting a docker-compose file that does 98% of the config work for you. Pretty sure there's one in the install docs.

[-] TCGM@lemmy.world -1 points 2 years ago

I've been having trouble understanding how the docker-compose thing works, and the whole... impermanence of docker containers. Got any tutorials you'd recommend? Note I'm on Windows.

[-] mim 1 points 2 years ago

Are you planning to host it on a Windows machine?

If you don't have experience with docker, don't jump straight to docker compose. Start simpler.

If you want to have data persist after a container is killed, have a look at the -v option of "docker run". It allows you to mount a volume.

[-] ctr1@fl0w.cc 1 points 2 years ago

I was able to get it running from source on Gentoo (without docker). Building from source is an option but you need to manage the dependencies and daemons yourself. This is my first comment! Good luck with your setup

[-] aggelalex@lemmy.world 1 points 2 years ago

You are using two technologies that have a bad of working like shit, together; Ubuntu/snap and docker. You can try podman if you want, or a different distro. Or, at least, install the official docker way.

[-] Stijn@lemmy.antemeridiem.xyz 0 points 2 years ago

I've been trying for more than a week. LemmyEasyDeploy worked. But now i'm stuck with ssl certificate.

[-] Coeus@coeus.sbs 0 points 2 years ago

Lemmy Easy Deploy handles the SSL certificates for you. You don't need to buy them

[-] Stijn@lemmy.antemeridiem.xyz 0 points 2 years ago

I get ssl errors when i try to access the site.

[-] Coeus@coeus.sbs 0 points 2 years ago

Maybe start from scratch? Maybe you could ask the developer. I bought SSL tickets but ended up not needing them

[-] Stijn@lemmy.antemeridiem.xyz 1 points 2 years ago

I've started from scratch several times. Never get further than the build command. :) But i will try again later today.

[-] TheOneCurly@feddit.online 0 points 2 years ago

I had some luck with the prebuilt images from dessalines' dockerhub and using the compose file in the repo with logging commented out.

It was stable for about a week before I tried to update and broke my database and federation completely. I might try again when 0.18 stable drops.

[-] redcalcium@c.calciumlabs.com 1 points 2 years ago

always make a database backup before performing upgrade.

[-] ledditor@leddit.minnal.icu 1 points 2 years ago

another docker user here. Why does our thumbnails look the same :) I know there is something wrong with my setup. I made a post here https://leddit.minnal.icu/post/1045 but still no idea.

[-] Re4mstr@lemmy.re4mstr.com 0 points 2 years ago

I'm using Proxmox and Docker-Compose. My instance is on an alpine LXC.

Very happy with it.

[-] pascal@lemm.ee 0 points 2 years ago

Would it be possible to teach us? Or give a quick step-by-step guide to make in run at least?

[-] Re4mstr@lemmy.re4mstr.com 1 points 2 years ago

Well, if it's your first time selfhosting and setting up your environment, I'd to things in steps. Great thing about virtualization is that you can snapshot.

Once you get proxmox up and running, choose an OS to virtualize, snapshot once made. Snapshot once configuration for users etc, snapshot once docker has been installed, snapshot after docker-compose has been configured.. You get the idea.

Set up backup of the VMs/containers, set up lemmy using the official docker-compose step-by-step guide. Once you reach it on port 80, set up nginx.

load more comments
view more: next ›
this post was submitted on 22 Jun 2023
10 points (100.0% liked)

Selfhosted

41047 readers
323 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 2 years ago
MODERATORS