I’ve recently started a crusade for the perfect selfhosted note taking app.

I posted here and I read a lot of others posts and for now I think I have what I need.

But as I see Joplin recommended every now and then, and given it doesn’t offer a webui I can access everywhere from any computer (you need to install their app), I had this thought: how could I dockerize, say, the Linux Joplin app so I can put it behind a reverse proxy with auth and access it when I’m away from home from any computer.

I’ve seen this done for soulseek, mkvtoolnix and others, so I know it is feasibile.

Being just a hobbyist selfhoster with no programming background, I’m not sure where to start educating myself.

I’m sure there are some guides out there, but I’m not sure what to look for, what terms to use in my searches.

Somebody could point me to the right direction?

@cecilkorik@lemmy.ca
link
fedilink
English
7
edit-2
1Y

A Dockerfile is basically just a script that starts a container image (ranging from standard Linux OS installs like ubuntu or debian or alpine to the very specialized pre-made containers with every piece of software you want already installed and configured and everything unnecessary stripped away) and then does various stuff to it (copies files/dirs from local, runs commands, configures networking). It’s all very straightforward, and if you know how to write a bash script or even just a basic batch file that’s pretty much all its doing, and the end result is a container, which is basically a miniature Linux virtual machine (that is supposed to be “single purpose” but there’s no technical limitation forcing it to be)

The simplest way to create a container is to use a standard OS container as I mentioned and install the software you want exactly as you normally would in that OS, using the OS package manager if you want, following tutorials for that OS or installing manually using the instructions from the software itself. Either way should work fine. Again, it’s basically not much different from having a virtual machine running that OS. You can even start up a root bash prompt and install it that way if you prefer, or even connect over ssh by running an sshd server on it (although that’s totally uneccessary and requires extra work).

For basic Dockerfile syntax, look at other people’s Dockerfiles and realize you probably don’t need 90% of the more complex ones. There are millions of them out there, you should be able to find some simple straightforward ones and just mimic those. Will you run into “gotchas”? Sure you will, Docker is full of them, and when you do your Dockerfile will get a little more complex as you find a way to deal with the problem Docker has created for you. Here’s a pretty simple tutorial example of a Dockerfile that just installs a bunch of packages from Debian and doesn’t even run any specific services, or alternatively here’s a Dockerfile that does nothing but run and configure an ssh server like I mentioned above (again that’s totally unnecessary normally but the point is you can certainly do it if you want to!)

Tiritibambix
creator
link
fedilink
English
21Y

Wow, thank you for this very thorough explanation. Makes it a lot easier to apprehend and easier to start my research :)

I learned by using django cookie cutter and reading their compose, env, docker and start files. I guess there are easier ways than that though (YouTube, coursera, etc)

I actually just ran across a video the other night that may help:

https://www.youtube.com/live/AHDrejEv0SM?si=7boS9kKG6aL8EQXN

It’s part of a playlist about Kubernetes but this particular video is more about containers in general.

@PipedLinkBot@feddit.rocks
bot account
link
fedilink
English
11Y

Here is an alternative Piped link(s):

https://www.piped.video/live/AHDrejEv0SM?si=7boS9kKG6aL8EQXN

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source; check me out at GitHub.

Tiritibambix
creator
link
fedilink
English
2
edit-2
1Y

Great, thank you for the link :)

Dandroid
link
fedilink
English
251Y

I learned by reading other Dockerfiles. They’re very simple in theory. You start from a base image using the “FROM” command. You copy all your code files using the “COPY” command. Run any environment set up with the “RUN” command. Then execute your program with the “ENTRYPOINT” command. For very basic services, that’s enough.

There are definitely some quirks that really you’ll only learn by trying it yourself and making mistakes. But I say just do it. If you know all about Linux systems like with file permissions and such, it won’t be too bad.

Tiritibambix
creator
link
fedilink
English
51Y

Thanks for demystifying the basics for me :)

Research8165
link
fedilink
41Y

This video and its accompanying github repo got me started recently.

Tiritibambix
creator
link
fedilink
English
21Y

Thank you for the ressource. I’ll check it out

@PipedLinkBot@feddit.rocks
bot account
link
fedilink
English
21Y

Here is an alternative Piped link(s):

video

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source; check me out at GitHub.

Search an issue you have (say ads), research a tool that fits your purpose (pihole) and try to run it in docker.
If you don’t understand something, research it.

At leasts that’s how I did it.

Tiritibambix
creator
link
fedilink
English
31Y

I think my phrasing wasn’t good, or maybe I misunderstand what you say (not a native English speaker), but I know how to run a container. I just want to run an existing app inside a container :)

Learning how to use other Docker images to run Docker containers is an important first step in that process.

I’m a programmer. My foray into learning how to containerize applications started by learning how to run containerized applications. Honestly, running them is the more complicated part (for many cases, some are dead simple).

Turning an app into an image is sometimes just a simple two line Dockerfile.

I started learning with Home Assistant and the branched out to pi hole, Frigate, Mosquito, and other home automation tools. I used that knowledge to containerize a home automation tool I wrote myself.

And now I’m working on containerizing dozens of applications at work.

Tiritibambix
creator
link
fedilink
English
21Y

Thank you, I’ll make good use of your advice :)

@kohana@kuu.kohana.fi
link
fedilink
English
71Y

There’s a great free MOOC course by the University of Helsinki which I heavily recommend: https://devopswithdocker.com/

There’s also a Kubernets continuation: https://devopswithkubernetes.com/

Tiritibambix
creator
link
fedilink
English
21Y

Great. Thank you :)

@TechAdmin@lemmy.world
link
fedilink
English
2
edit-2
1Y

This project, https://neko.m1k1o.net/#/getting-started/examples , looks like a good base to try running regular GUI apps via docker & web.

edit: and here’s the git with Dockerfiles, https://github.com/m1k1o/neko-apps

Create a post

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!

  • 1 user online
  • 279 users / day
  • 589 users / week
  • 1.34K users / month
  • 4.55K users / 6 months
  • 1 subscriber
  • 3.49K Posts
  • 69.8K Comments
  • Modlog