this post was submitted on 18 Jun 2023
212 points (97.7% liked)

Selfhosted

39435 readers
2 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
 

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

(page 2) 50 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 year ago

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

[–] [email protected] 2 points 1 year ago

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.

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

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

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

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.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (6 children)

Threw an error:

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

load more comments (6 replies)
[–] [email protected] 1 points 1 year ago (2 children)

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

load more comments (2 replies)
[–] [email protected] 1 points 1 year ago (2 children)

So stupid question - how do you shut them down? Docker compose down or stop don't seem to work.

Also, as an intermediate (spoiled Unraid) user, if I'm behind nginx proxy manager with custom ports do I just change 80 and 443 in the lemmy docker-compose? I'm doing this in a Debian VM.

load more comments (2 replies)
[–] [email protected] 1 points 1 year ago (1 children)

What adjustments I need to do to run this locally (in my LAN) just for testing?

[–] [email protected] 1 points 1 year ago (10 children)

I haven't tested a local only use case, but you can probably set these options in config.env

  • Set LEMMY_HOSTNAME to localhost
  • Set CADDY_DISABLE_TLS to true
  • Set TLS_ENABLED to false

This will disable any HTTPS certificate generation and only run Lemmy on port 80. I don't know if Caddy or Lemmy will act weird if the hostname is localhost, but this should work for you. Let me know if it doesn't.

load more comments (10 replies)
[–] [email protected] 1 points 1 year ago (1 children)

Way cool. Can you provide something for unRaid?

[–] [email protected] 1 points 1 year ago

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!

[–] [email protected] 1 points 1 year ago (6 children)

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

load more comments (6 replies)
[–] [email protected] 1 points 1 year ago (1 children)

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.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

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?

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (3 children)

Hey @[email protected], 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?

load more comments (3 replies)
[–] [email protected] 1 points 1 year ago

Marius Hosting published a good guide this week that I used on my nas without an issue (via docker compose).

[–] [email protected] 1 points 1 year ago (4 children)

Hi @[email protected]

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.

load more comments (4 replies)
load more comments
view more: ‹ prev next ›