[Request] Vikunja - a selfhosted alternative to Wunderlist, full to-do list to organize your life

Their website: https://vikunja.io/
Docs: https://vikunja.io/docs/

This new wunderlist-killer app looks very promising and the devs are very active.

The problem is that their own docker solution is a bitch to install, having to use nginx to reverse proxy their api to their web front end, etcetera. Too much work to get it going, especially if you’re running out of ports on your docker host.

Sounds like a perfect container for LSIO to maintain and make it easy to install.

1 Like

Tried to install it, but it’s really hard indeed. +1 for a LinuxServer.io docker as Wunderlist is stopping soon

1 Like

Hey there, creator of Vikunja here!

My intention for keeping both containers separate comes from the fact that the api and frontend live in independent repos and I see them as different, independent things. Because of that, I’m hesitating to put both the api and the frontend in one container. Also docker itself promotes separation of concerns therefore it makes sense to separate both containers.

Honestly I’m slightly astonished by people looking for Vikunja in a single docker container - I briefly expected people wanting a single installable binary, like Gitea does it. I figured everyone running docker containers on their server has a reverse proxy anyway so it wouldn’t be hard to proxy the Vikunja backend and frontend containers on separate paths under the same port.
I also provide full docker examples which are essentially “copy this docker-compose.yml and run docker-compose up -d and you’re good to go”, I assumed people would just use that and hoped it would make the setup less complicated.
For everything that’s not just “testing how it feels” (and just for that there is also the demo instance) you should run Vikunja with a proper database like mysql or postgres and at that point you’ll probably end up using docker compose anyway to configure everything in a more organized way.

Since this thread was originally started, I’ve added a setting to set the api url in the frontend which essentially eliminates the need for a reverse proxy (although it would look a lot nicer imho :slightly_smiling_face: ).

All of that being said I’m open to the idea of providing a single docker container with the api and frontend bundled. I’m just not sure if it is the best way to solve this problem - I can also see the possibility of other non-docker installation wanting to benefit from a single installable “thing” to make the setup easier. Open to suggestions and discussions!

Please don’t hesitate to reach out if you’re having any issues, either via matrix or the forum.

2 Likes

Update: There’s now a full docker tutorial for the setup: https://vikunja.io/docs/docker-walkthrough/

1 Like