Skip Navigation

Having trouble deploying Lemmy? Try my new script! Get up and running in minutes!

In the past few days, I've seen a number of people having trouble getting Lemmy set up on their own servers. That motivated me to create Lemmy-Easy-Deploy, a dead-simple solution to deploying Lemmy using Docker Compose under the hood.

To accommodate people new to Docker or self hosting, I've made it as simple as I possibly could. Edit the config file to specify your domain, then run the script. That's it! No manual configuration is needed. Your self hosted Lemmy instance will be up and running in about a minute or less. Everything is taken care of for you. Random passwords are created for Lemmy's microservices, and HTTPS is handled automatically by Caddy.

Updates are automatic too! Run the script again to detect and deploy updates to Lemmy automatically.

If you are an advanced user, plenty of config options are available. You can set this to compile Lemmy from source if you want, which is useful for trying out Release Candidate versions. You can also specify a Cloudflare API token, and if you do, HTTPS certificates will use the DNS challenge instead. This is helpful for Cloudflare proxy users, who can have issues with HTTPS certificates sometimes.

Try it out and let me know what you think!

https://github.com/ubergeek77/Lemmy-Easy-Deploy

142 comments
  • Literally been thinking about this so thank you beautiful brained individual. Would you mind if I shouted this in the YSK group?

    • Thank you very much for the kind words!

      Please be my guest! It would make me happy to know this was helping people join Lemmy!

  • Been pounding my head against the desk for the last TWO DAYS trying to get everything to work. Then you came along and solved all of my problems and it only took me 10 minutes to set up (mostly due to waiting on DNS to flush!)

    THANK YOU SO MUCH for creating this, and PLEASE continue to maintain! I will gib coffees if need be along the way!!

  • I'm relatively competent installing server software, but the Lemmy instructions completely flummoxed me. Their docker instructions just don't work.

    I ended up using the ansible docker scripts and filling out the blanks because I'm unfamiliar with ansible.

    If this is as good as it sounds, you're doing everyone a massive favour.

  • You kind Sir/Lady/Gentleperson are making the fediverse a better place with this help. Thanks a bunch, gonna definitely ease my attempts at eventually self-hosting!

  • I just made a post about having issues with getting a fully functional instance so I think I'm gonna give this a try.

    • I hope it works out for you!

      Quick note: For email, pretty much every VPS provider out there blocks port 25, which is needed for emails to send. They do this to prevent spam emails from being sent en-masse from their servers. This is likely why your Ansible installation is not sending emails.

      Since it's uncommon for servers to support email, this script disables it by default. If your provider supports port 25 (or you get approved to use it, some VPS providers allow you to request access), check config.env and set USE_EMAIL to true. This will set up everything you need for email.

      I haven't been able to test email, so let me know how it works if you do! This doesn't do any of the DNS verification some email provders require, so your emails might be sent to spam. Lemmy doesn't really have documentation about how to set this up properly. If someone makes guidelines for this, I can update my project to do that automatically as well.

  • Do I understand it correctly that this script only works if it can set up it's own Caddy, and if I already run nginx to reverse proxy stuff on my server, then this isn't for me?

  • After trying to do it with docker or ansible manually for hours and failing, this was soo helpful. So thank you.

  • This was the only tool that I was able to get running. I recommend it to anyone curious about running their own instance. I tried both the official Ansible and Docker instructions, and neither worked.

  • I used this and the developer is very helpful. Works great. Helped me even upgrade to 0.18.0.

  • Thanks for the helpful tool! Posting this from my new single-user Lemmy instance. I ended up tweaking the compose template a bit to remove Caddy since I already have it running on this VPS for other services. Wasn't too bad to just take the Caddyfile information and add it to my own existing framework.

  • As someone who spent hours figuring out how to deploy through Ansible, how dare you /s But seriously thank you for putting in the work to make creating an instance more attainable for people.

  • Looks really good. I did it pretty much the same way, myself - but if I were looking to start again, I would definitely use this.

    Edit: Ran it on a fresh AWS Ubuntu instance and it worked perfectly fine.

    • Were you able to get AWS to open port 25 for smtp support?

      • I didn't bother, as I was just testing. But you are right, port 25 outbound is blocked by default. They have a defined process for you to ask for it to be unblocked and you have to tell them what you are using it for and how you are preventing spam from being sent. In this case it might be enough to say that you aren't allowing port 25 inbound, so it can't be used as an open relay.

  • Any tips on how to customize the favicon for my instance? Using the docker-compose method.

    • Ok nevermind to everything I just said before this edit.

      Go into your instance settings and upload an icon. A favicon will be made for it automatically.

    • Looks like my favicon populated when I uploaded an icon in the admin panel: yourlemmydomain/admin

      *edit seems that I replied to a comment showing as new for me but was actually old.

  • A bit OT, but worth the shot: can anyone confirm whether instances deployed with this script can be found on Mastodon?

    I have tried both the ansible script provided by the developers and I've adapted the docker-compose files to get things running on Docker Swarm. Everything seems to be working well, object storage, federation... except that I can not find any user or community from my instance if I search from Mastodon.

    • I saw a bug

      I see this user who deployed using this script, I click the username link below his name which should lead to server.tld/u/username, but it leads to server.tld/users/username, maybe some kind of dbUser -> outside world configuration is broken?

      Also the Bio is different on his local instance and the federated instance?

  • Is this easier than the Ansible deployment? That was very straight forward if you’re running a system with apt.

    • I am biased, but I would say yes, it is. There is only one config file to manage in my project, whereas the Ansible config has three separate config files the user needs to copy and edit.

      You also need* a different system with Ansible installed to actually run the playbook, since Ansible needs to connect to your server to run it. That is an extra installation step, on top of needing some way to ensure Ansible has the right SSH credentials to connect.

      *you can tell Ansible to connect to localhost, but this is not supported and a beginner wouldn't know to do this.

      There is nothing wrong with the playbook though! I just thought beginners might be a bit intimidated by it, and the dependency on apt is a bit of a bummer.

  • Threw an error:

     undefined
        
    Creating lemmy-easy-deploy_pictrs_1 ... 
    Creating lemmy-easy-deploy_postgres_1 ... error
    
    ERROR: for lemmy-easy-deploy_postgres_1  Cannot start service postgres: failed to create task for container: failed to create shim task: OCI runtime create failed: runc cr
    Creating lemmy-easy-deploy_pictrs_1   ... error: permission denied: unknown
    
      
    • Does your user have permission to use Docker? You could try running the script as root and seeing if that helps?

      Is there any other info about your system that you can provide? For example, are you using a non-standard OCI runtime, such as podman? I've added detection for podman-compose in the script, but I haven't tested it yet. If you're using something like that, you'll need to ensure all the permissions are set up correctly.

  • You are helping the whole community! Thank you, I will give a try to it, since I'm quite new in self-hosted platform!

  • Way cool. Can you provide something for unRaid?

    • Sorry, I don't have access to an unRaid system to test it with.

      However, I know most NAS systems at least support CLI-style Docker and Docker Compose, so if you can manage to get Docker running, it might work? The script has some Docker detection if you're not sure.

      However, I know Synology hogs use of port 80 and 443. I'm not sure if unRaid is the same way. If it is, this might not be the best solution for you. But, if you want to give it a shot, I do have some advanced options in my config that lets you change to different ports and turn off HTTPS (so you can run a proxy in front of it). I can't really help people who run it behind a webserver like this, but the template files in my repo can be freely modified, so you're welcome to hack at my script any way you like to get it working!

  • Any ideas how to solve this? Everthing works according to docker..

    XXXXX@lemmy:~/Lemmy-Easy-Deploy$ ./deploy.sh

    Lemmy-Easy-Deploy by ubergeek77 (v1.1.1)

    Detected runtime: docker (Docker version 24.0.2, build cb74dfc) Detected compose: docker compose (Docker Compose version v2.18.1) Runtime state: ERROR

    ERROR: Docker runtime not healthy. Something is wrong with your Docker installation. Please ensure you can run the following command on your own without errors: docker run --rm -it -v $(pwd):/host:ro hello-world

    If you see any errors while running that command, please Google the error messages to see if any of the solutions work for you. Once Docker is functional on your system, you can try running Lemmy Easy Deploy again.

    XXXXX@lemmy:~/Lemmy-Easy-Deploy$ sudo docker run --rm -it -v $(pwd):/host:ro hello-world [sudo] password for XXXXX:

    Hello from Docker! This message shows that your installation appears to be working correctly.

    To generate this message, Docker took the following steps:

    1. The Docker client contacted the Docker daemon.
    2. The Docker daemon pulled the "hello-world" image from the Docker Hub. (amd64)
    3. The Docker daemon created a new container from that image which runs the executable that produces the output you are currently reading.
    4. The Docker daemon streamed that output to the Docker client, which sent it to your terminal.

    To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash

    Thanks!

  • Hey @ubergeek77@lemmy.ubergeek77.chat, I'm trying this on an Aarm64 instance and the script says it only works on v0.17.4. Is there a plan to update to 0.18?

    EDIT: the script fails for 0.17.4 here:

    => ERROR [lemmy builder 6/7] RUN cargo build --release 1183.5s

    Build timer continues but CPU usage drops off. Any ideas where I've gone wrong?

    • Try again with the latest version of Lemmy Easy Deploy.

      I am now building multiarch images for 0.18.x, and my script will now default to my multiarch images, so there is no longer a need to build it yourself :)

    • Before this week, I would have told you no. But I have big plans for the 0.18.1 update.

      The Lemmy team has completely broken ARM support with seemingly no plan to support it again. They switched to a base Docker image that only supports x86_64. This is why your build fails. I still don't understand why they would move from a multiarch image to an x86_64-only one.

      I've been working on this for about a week, and just yesterday I finished a GitHub Actions pipeline that builds multiarch images for x64/arm/arm64. I currently have successful builds for 0.18.1-rc.2. In a future update for my script, I will have it use these, that way ARM users don't need to compile it anymore. I just ask for a little patience, I haven't been able to do any work on Lemmy Easy Deploy since I've been working on this pipeline :)

      I also do want to qualify - don't get your hopes up until you see it running for yourself. Ultimately, I am just a DevOps guy, not a Lemmy maintainer. I haven't tested my ARM images yet, and while I did my best to get these to build properly, I can't fix everything. If anything else breaks due to running on ARM, it will be up to the Lemmy team to fix those issues (which is not likely anytime soon, if their updated x86_64 Dockerfiles are any indication).

      But, fingers crossed everything goes smoothly! Keep an eye out for an update, I'm working hard on it, hopefully I can get it out in time for 0.18.1!


      EDIT:

      Putting my notes on this progress here:

      https://github.com/ubergeek77/Lemmy-Easy-Deploy/issues/17

  • Hi @ubergeek77@lemmy.ubergeek77.chat

    I must be doing something wrong here because unlike many others I can't seem to get this working! Please can you offer some advice?

    I have amended the config.env file to change the HOSTNAME, SITE NAME and ADMIN USER but left everything else the same.

    I then ran ./deploy.sh and everything seems to have worked because it presented me with the admin login credentials and basic instructions to shutdown and start the instance. I tried simply typing the IP address of the docker container in to a browser but that didn't work and TBH I didn't expect it to. I then typed the URL into the browser and I'm getting a "ERR_TOO_MANY_REDIRECTS" error message. I read through the trouble shooting on your Github but the only reference to too many redirects mentions a Cloudflare API token, I'm not using Cloudflare nut I am using nginx proxy manager to point my URL to the docker container.

    I hope some of this makes sense.

    • Hey there, please note that running behind a reverse proxy is not supported. You can do it if you want, but you are kinda on your own, sorry.

      If it helps, you will probably need to disable Caddy's TLS in the config, and you will need to make sure that the request reaches Caddy via the correct host. You can't reverse proxy directly to port 80 over an IP, it needs to think it's coming from an actual domain.

      You can also check out my advanced configuration page to learn how to override the Caddyfile template and roll your own config that is more compatible for your use case.

      Good luck!

      • Thank you so much for replying.

        I think this is above my skill level, but I will have a read through your advanced configuration page and see if I can understand it.

        Thanks again, but I think I'm going to need more than luck!! LOL

  • Exploring Go High Level:

    What’s the Enthusiasm About?
    Hello there! Are you familiar with Go High Level? If not, let's break it down. Imagine managing multiple apps for marketing. Sounds busy. That's where Go High Level comes in. It's like that friend who has a solution for everything. Whether you are working on creating an outstanding sales funnel or sending out an email campaign, this platform has your back. The best part? They let you test drive everything with a 14-day free trial. It's like trying out a new car but for your business. And if you ever need assistance, their support team is just a click away. Pretty exciting, huh?

    So, How Much Does It Cost?
    Alright, let's talk about the financial side. Go High Level offers 3 main plans. The Agency Starter Plan is perfect if you're just starting or have a small business. It's loaded with all the essential tools, and it's quite cost-effective. But if you're looking to scale up, the Agency Unlimited Plan is your best choice. It's like the VIP pass at a concert, giving you access to everything without any limitations. Not sure about committing? Remember that 14-day free trial I mentioned? It's a great way to give it a try without any obligations. Lastly, they offer a Pro plan that includes "SaaS mode," where you can white label the product under your brand. Fantastic!

    Why Everyone's Raving About It:
    In a world full of sophisticated digital tools, Go High Level is like that all-in-one Swiss Army knife. There's no need to switch between apps because it has everything under one roof. Whether you're a newcomer or an experienced marketer, it's super user-friendly. It's not just about launching impressive campaigns; they ensure you understand their performance with top-notch analytics. There's even a white-label feature for marketing agencies, so you can add your brand and impress your clients.

    Here is a link to their 14-day free trial:
    https://www.gohighlevel.com/?fpref=get-started-now.

  • I appreciate the effort, but for software as experimental as Lemmy I would argue making things 1-click "simple" will inevitably lead to people breaking their instances in the future, when some migration will be required.

    I would strongly suggest people figure things on their own.

142 comments