How to Install Vikunja on Your Synology NAS

How to Install Vikunja on Your Synology NAS

Vikunja is an open source, selfhosted application. With Vikunja you can easily organize all of your tasks in lists. Put lists together in a namespace to keep related stuff grouped together. Vikunja lets you easily share a list or a namespace with another user or a whole team! You can also assign tasks to people so everybody knows who’s working on what. In this step by step guide I will show you how to install Vikunja on your Synology NAS using Docker and Portainer.

💡Note: This guide works perfectly with the latest Vikunja v0.23.0 release.

  • STEP 1

Please Support My work by Making a Donation.

  • STEP 2

Install Portainer using my step by step guide. If you already have Portainer installed on your Synology NAS, skip this STEP. Attention: Make sure you have installed the latest Portainer version.

  • STEP 3

Make sure you have a synology.me Wildcard Certificate. Follow my guide to get a Wildcard Certificate. If you already have a synology.me Wildcard certificate, skip this STEP.

  • STEP 4

Go to Control Panel / Network / Connectivity tab/ Check Enable HTTP/2 then click Apply. Follow the instructions in the image below.

Vikunja Synology NAS Set up 1 new 2023

  • STEP 5

Go to Control Panel / Security / Advanced tab/ Check Enable HTTP Compression then click Apply. Follow the instructions in the image below.

Vikunja Synology NAS Set up 2 new 2023

  • STEP 6

Go to Control Panel / Login Portal / Advanced Tab / click Reverse Proxy. Follow the instructions in the image below.

Vikunja Synology NAS Set up 3 new 2023

  • STEP 7

Now click the “Create” button. Follow the instructions in the image below.

Vikunja Synology NAS Set up 4 new 2023

  • STEP 8

After you click the Create button, the window below will open. Follow the instructions in the image below.

On the General area, set the Reverse Proxy Name description: type in Vikunja. After that, add the following instructions:

Source:
Protocol: HTTPS
Hostname: vikunja.yourname.synology.me
Port: 443

Check Enable HSTS

Destination:
Protocol: HTTP
Hostname: localhost
Port: 3456

Vikunja Synology NAS Set up 5 new 2024

  • STEP 9

On the Reverse Proxy Rules click the Custom Header tab. Click Create and then, from the drop-down menu, click WebSocket. After you click on WebSocket, two Header Names and two Values will be automatically added. Click Save. Follow the instructions in the image below.

Synology Proxy WebSocket

  • STEP 10

Go to File Station and open the docker folder. Inside the docker folder, create one new folder and name it vikunja. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

Vikunja Synology NAS Set up 9 new 2023

  • STEP 11

Now create two new folders inside the vikunja folder that you created at STEP 10 and name them data and db. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.

Vikunja Synology NAS Set up 10 new 2023

  • STEP 12

Follow my step by step guide on how to activate SMTP for your Gmail account. This step is mandatory. Note: If you don’t want to use the easiest way for SMTP with Google and you already have SMTP details from your own Mail Server, you can just skip this STEP and use your personalized email SMTP details instead.

  • STEP 13

Log into Portainer using your username and password. On the left sidebar in Portainer, click on Stacks then + Add stack. Follow the instructions in the image below.

1 Synology Portainer Add Stack

  • STEP 14

In the Name field type in vikunja. Follow the instructions in the image below.

Note: Copy Paste the code below in the Portainer Stacks Web editor.

version: "3.9"
services:
  db:
    image: postgres:16
    container_name: Vikunja-DB
    hostname: vikunja-db
    mem_limit: 1gb
    cpu_shares: 1024
    security_opt:
      - no-new-privileges:true
    healthcheck:
      test: ["CMD", "pg_isready", "-q", "-d", "vikunja", "-U", "vikunjauser"]
      timeout: 45s
      interval: 10s
      retries: 10
    volumes:
      - /volume1/docker/vikunja/db:/var/lib/postgresql/data:rw
    environment:
      POSTGRES_DB: vikunja
      POSTGRES_USER: vikunjauser
      POSTGRES_PASSWORD: vikunjapass
    restart: on-failure:5
    
  vikunja:
    image: vikunja/vikunja:latest
    container_name: Vikunja
    hostname: vikunja
    mem_limit: 8g
    cpu_shares: 2048
    security_opt:
      - no-new-privileges:true
    ports:
      - 3456:3456
    environment:
      PUID: 1026
      PGID: 100
      VIKUNJA_MAILER_ENABLED: true
      VIKUNJA_MAILER_HOST: smtp.gmail.com
      VIKUNJA_MAILER_PORT: 587
      VIKUNJA_MAILER_SKIPTLSVERIFY: false
      VIKUNJA_MAILER_AUTHTYPE: login
      VIKUNJA_MAILER_USERNAME: Your-own-gmail-address
      VIKUNJA_MAILER_PASSWORD: Your-own-app-password
      VIKUNJA_MAILER_FROMEMAIL: Your-own-gmail-address
      VIKUNJA_DATABASE_HOST: vikunja-db
      VIKUNJA_DATABASE_PASSWORD: vikunjapass
      VIKUNJA_DATABASE_TYPE: postgres
      VIKUNJA_DATABASE_USER: vikunjauser
      VIKUNJA_DATABASE_DATABASE: vikunja
      VIKUNJA_SERVICE_JWTSECRET: MariushostingMariushostingMari13
      VIKUNJA_SERVICE_TIMEZONE: Europe/Bucharest
      VIKUNJA_SERVICE_PUBLICURL: https://vikunja.yourname.synology.me/
      VIKUNJA_SERVICE_ENABLEREGISTRATION: true
    volumes:
      - /volume1/docker/vikunja/data:/app/vikunja/files:rw
    restart: on-failure:5
    depends_on:
      db:
        condition: service_healthy

Note: Before you paste the code above in the Web editor area below, change the value numbers for PUID and PGID with your own PUID and PGID values. (Follow my step by step guide on how to do this.1026 is my personal UID value and 100 is my personal GID value. You have to type in your own values.
Note: Before you paste the code above in the Web editor area below, change the value for VIKUNJA_MAILER_USERNAME and type in your own Gmail address. Refer to STEP 12.
Note: Before you paste the code above in the Web editor area below, change the value for VIKUNJA_MAILER_PASSWORD and type in your own Gmail app password. Refer to STEP 12.
Note: Before you paste the code above in the Web editor area below, change the value for VIKUNJA_MAILER_FROMEMAIL and type in your own Gmail address. Refer to STEP 12.
Note: Before you paste the code above in the Web editor area below, change the value for VIKUNJA_SERVICE_JWTSECRET and add your own JWTSECRET password. MariushostingMariushostingMari13 is an example of a JWTSECRET password; you have to add your own JWTSECRET password.
Note: Before you paste the code above in the Web editor area below, change the value for TZ. (Select your current Time Zone from this list.)
Note: Before you paste the code above in the Web editor area below, change the value for VIKUNJA_SERVICE_PUBLICURL and add your own synology.me DDNS address that you have previously created at STEP 12.

Vikunja Synology NAS Set up 11 new 2024

  • STEP 15

Scroll down on the page until you see a button named Deploy the stack. Click on it. Follow the instructions in the image below. The installation process can take up to a few minutes. It will depend on your Internet speed connection.

Vikunja Synology NAS Set up 12 new 2024

  • STEP 16

If everything goes right, you will see the following message at the top right of your screen: “Success Stack successfully deployed“.

Vikunja Synology NAS Set up 13 new 2024

  • STEP 17

Go back to STEP 1 or you will deal with karma 🙂.

  • STEP 18

Please wait approximately 2 minutes for the installation to be completed or you will get a Synology blank page if you try to connect too soon. Now open your browser and type in your HTTPS/SSL certificate like this https://vikunja.yourname.synology.me In my case it’s https://vikunja.mariushosting.synology.me If everything goes right, you will see the Vikunja Login page. Click Create Account. Follow the instructions in the image below.

Vikunja Synology NAS Set up 16 new 2024

  • STEP 19

Add your own Username, Email address and Password then hit the CREATE ACCOUNT button. Follow the instructions in the image below.

Vikunja Synology NAS Set up 17 new 2024

  • STEP 20

Vikunja at a Glance!

Vikunja Synology NAS Set up 18 new 2024

  • STEP 21

Check your email and confirm your account. Follow the instructions in the image below.

Vikunja Synology NAS Set up 18 new 2024

  • STEP 22

You can change different parameters. At the top right of the page click on your own username, then Settings. Change the Color Scheme, Language, Time Zone etc. Click Save. Follow the instructions in the image below.

Vikunja Synology NAS Set up 19 new 2024

  • STEP 23

One of the most important things you need to know about Vikunja is that anyone who can access your HTTPS Vikunja link at STEP 22 can register for a new account by default. Follow my step by step guide below to disable registration of new users in Vikunja.

  • STEP 24

Go back to STEP 1 or you will deal with karma 🙂.

  • STEP 25

Go to Portainer then click Stacks. Click on vikunja. Follow the instructions in the image below.

Vikunja Synology NAS Set up 18 new 2023

  • STEP 26

Click on the Editor tab then scroll down the page a little bit. Change the value for VIKUNJA_SERVICE_ENABLEREGISTRATION from true to false then scroll down the page until you find the Update the stack button. Follow the instructions in the image below.

Vikunja Synology NAS Set up 19 new 2025

  • STEP 27

Click Update the stack. Follow the instructions in the image below.

Vikunja Synology NAS Set up 20 new 2024

  • STEP 28

After you click Update the stack at STEP 27, a new pop up window will open. Click Update. Follow the instructions in the image below.

Vikunja Synology NAS Set up 21 new 2024

  • STEP 29

When new users try to register, they will receive the following error message: “Not Found“.

Vikunja Synology NAS Set up 22 new 2024

Note: Even if you have change the variable VIKUNJA_SERVICE_ENABLEREGISTRATION with the false value, the Create Account button will still be shown in the Vikunja Login page interface, but actually attempting to create an account will result in an error message.

Enjoy Vikunja!

🆘TROUBLESHOOTING

If you encounter issues by using this container, make sure to check out the Common Docker issues article.

🔥Troubleshooting: If you experience connection issues with Vikunja, make sure RULE 5 and RULE 6 is correctly applied on your Synology NAS Firewall configuration.

Note: Find out how to update the Vikunja container with the latest image.
Note: How to Back Up Docker Containers on your Synology NAS.
Note: Can I run Docker on my Synology NAS? See the supported models.
Note: How to Free Disk Space on Your NAS if You Run Docker.
Note: How to Schedule Start & Stop For Docker Containers.
Note: How to Activate Email Notifications.
Note: How to Add Access Control Profile on Your NAS.
Note: How to Change Docker Containers Restart Policy.
Note: How to Use Docker Containers With VPN.
Note: Convert Docker Run Into Docker Compose.
Note: How to Clean Docker.
Note: How to Clean Docker Automatically.
Note: Best Practices When Using Docker and DDNS.
Note: Some Docker Containers Need WebSocket.
Note: Find out the Best NAS Models For Docker.
Note: Activate Gmail SMTP For Docker Containers.

This post was updated on Saturday / February 24th, 2024 at 5:38 AM