How to Install InvenTree on Your Synology NAS

How to Install InvenTree on Your Synology NAS

InvenTree is an open-source inventory management system which provides intuitive parts management and stock control. It is designed to be lightweight and easy to use for SME or hobbyist applications. Powerful business logic works in the background to ensure that stock tracking history is maintained, and users have ready access to stock level information. InvenTree is designed to allow for a flexible installation. In this step by step guide I will show you how to install InvenTree on your Synology NAS using Docker & Portainer.

💡Note: This guide works perfectly with the latest InvenTree v0.17.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 / Login Portal / Advanced Tab / click Reverse Proxy. Follow the instructions in the image below.

InvenTree Synology NAS Set up 1

  • STEP 5

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

InvenTree Synology NAS Set up 2

  • STEP 6

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 InvenTree. After that, add the following instructions:

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

Check Enable HSTS

Destination:
Protocol: HTTP
Hostname: localhost
Port: 5234

InvenTree Synology NAS Set up 3

  • STEP 7

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 8

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

InvenTree Synology NAS Set up 4

  • STEP 9

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

InvenTree Synology NAS Set up 5

  • STEP 10

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

InvenTree Synology NAS Set up 6

  • STEP 11

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

InvenTree Synology NAS Set up 7

  • 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 inventree. Follow the instructions in the image below.

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

services:
  inventree-db:
    image: postgres:13
    container_name: InvenTree-DB
    hostname: inventree-db
    mem_limit: 1g
    cpu_shares: 1024
    security_opt:
      - no-new-privileges:true
    healthcheck:
      test: ["CMD", "pg_isready", "-q", "-d", "inventree", "-U", "inventreeuser"]
      timeout: 45s
      interval: 10s
      retries: 10
    volumes:
      - /volume1/docker/inventree/db:/var/lib/postgresql/data:rw
    environment:
      POSTGRES_DB: inventree
      POSTGRES_USER: inventreeuser
      POSTGRES_PASSWORD: inventreepass
    restart: on-failure:5

  inventree-cache:
    image: redis:7
    container_name: InvenTree-REDIS
    healthcheck:
     test: ["CMD-SHELL", "redis-cli ping || exit 1"]
    volumes:
      - /volume1/docker/inventree/redis:/data:rw
    depends_on:
      inventree-db:
        condition: service_healthy
    env_file:
      - stack.env
    restart: on-failure:5

  inventree-server:
    image: inventree/inventree:stable
    container_name: InvenTree-SERVER
    healthcheck:
      test: ["CMD-SHELL", "nc -z 127.0.0.1 8000 || exit 1"]
      interval: 10s
      timeout: 5s
      retries: 3
      start_period: 90s
    ports:
      - 5234:8000
    depends_on:
      inventree-db:
        condition: service_healthy
    env_file:
      - stack.env
    volumes:
      - /volume1/docker/inventree/data:/home/inventree/data:rw
    restart: on-failure:5

  inventree-worker:
    image: inventree/inventree:stable
    container_name: InvenTree-WORKER
    command: invoke update
    depends_on:
      inventree-db:
        condition: service_healthy
    env_file:
      - stack.env
    volumes:
      - /volume1/docker/inventree/data:/home/inventree/data:rw
    restart: on-failure:1

InvenTree Synology NAS Set up 8

  • STEP 15

Click the Upload button after Web editor. Download the stack.env file by clicking the blue link below and then upload it from your computer in the “Load variables from .env files“. Follow the instructions in the image below. 🔒Note: Support my work to unlock the password. You can use this password to download any file on mariushosting forever!

👉🏻Download stack.env file

InvenTree Synology NAS Set up 9

  • STEP 16

Note: On the Environment variables area, change the value for INVENTREE_ADMIN_USER and add your own Username.
Note: On the Environment variables area, change the value for INVENTREE_ADMIN_PASSWORD and add your own Password.
Note: On the Environment variables area, change the value for INVENTREE_ADMIN_EMAIL and add your own email address.
Note: On the Environment variables area, change the value for INVENTREE_SITE_URL. Type in your own synology.me DDNS that you have previously created at STEP 6 with https at the beginning.
Note: On the Environment variables area, change the value for INVENTREE_TRUSTED_ORIGINS. Type in your own synology.me DDNS that you have previously created at STEP 6 with https at the beginning.
Note: On the Environment variables area, change the value for INVENTREE_TIMEZONE and add your own TIMEZONE.  (Select your current Time Zone from this list.)
Note: On the Environment variables area, change the value for INVENTREE_EMAIL_USERNAME and type in your own Gmail address. STEP 12.
Note: On the Environment variables area, change the value for INVENTREE_EMAIL_SENDER and type in your own Gmail address. STEP 12.
Note: On the Environment variables area, change the value for INVENTREE_EMAIL_PASSWORD and type in your own Gmail app password. STEP 12.
⚠️Warning: Do not change any of the other values.

InvenTree Synology NAS Set up 10

  • STEP 17

After you make the changes, click the Web editor button. Follow the instructions in the image below.

InvenTree Synology NAS Set up 11

  • STEP 18

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.

InvenTree Synology NAS Set up 12

  • STEP 19

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

InvenTree Synology NAS Set up 13

  • STEP 20

⚠️Wait approximately 10 minutes until Inventree-SERVER and Inventree-WORKER are marked as exited. Refresh the page from time to time to check the status.

InvenTree Synology NAS Set up 14

  • STEP 21

Once both containers are marked as exited, go to Stacks then click inventree. Follow the instructions in the image below.

InvenTree Synology NAS Set up 15

  • STEP 22

Once you click inventree at STEP 21, click the Editor tab. On the inventree-worker command area, type in invoke worker instead of invoke update. Click Update the stack. Follow the instructions in the image below.

InvenTree Synology NAS Set up 16

  • STEP 23

A new pop up window can appear. Click Update. If the pop up window doesn’t appear, go straight to the next STEP. Follow the instructions in the image below.

InvenTree Synology NAS Set up 17

  • STEP 24

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

  • STEP 25

Now open your browser and type in your HTTPS/SSL certificate like this https://inventree.yourname.synology.me In my case it’s https://inventree.mariushosting.synology.me If everything goes right, you will see the Inventree Login page. Type in your own Username (INVENTREE_ADMIN_USER) and your own Password (INVENTREE_ADMIN_PASSWORD) that you have previously added at STEP 16, then click Sign In. Follow the instructions in the image below.

InvenTree Synology NAS Set up 18

  • STEP 26

Your Inventree dashboard will look like this. ⚠️Go straight to the next STEP.

InvenTree Synology NAS Set up 19

  • STEP 27

Open Portainer and click Containers. Select the InvenTree-DB, Inventree-REDIS, InvenTree-SERVER, InvenTree-WORKER container, then click Restart. Follow the instructions in the image below. ⚠️This STEP is mandatory to make sure your server is running flawlessly.

InvenTree Synology NAS Set up 20

  • STEP 28

Log into your InvenTree instance. At the top right of the page, click on your Username, then Settings. Type in your own email address in the apposite area, then click Add Email. Follow the instructions in the image below.

InvenTree Synology NAS Set up 21

  • STEP 29

Check your email and click on the confirmation link. Follow the instructions in the image below. ⚠️Warning: Remember that STEP 12 in this article is mandatory and so are the environment variables at STEP 16.

InvenTree Synology NAS Set up 22

  • STEP 30

Once you click on the confirmation link in the email, a new window browser will open. Click Confirm. Follow the instructions in the image below.

InvenTree Synology NAS Set up 23

  • STEP 31

If you want to test the new Inventree user interface, you will need to add /platform/ at the end of your synology.me DDNS URL address. In my case it’s https://inventree.mariushosting.synology.me/platform/ Follow the instructions in the image below.

InvenTree Synology NAS Set up 24

  • STEP 32

You can easily switch the theme to Dark. Follow the instructions in the image below.

InvenTree Synology NAS Set up 25

Enjoy InvenTree!

🆘TROUBLESHOOTING

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

Note: Can I run Docker on my Synology NAS? See the supported models.
Note: How to Back Up Docker Containers on your Synology NAS.
Note: Find out how to update the InvenTree container with the latest image.
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.