How to Install FacturaScripts on Your Synology NAS

How to Install FacturaScripts on Your Synology NAS

FacturaScripts is an accounting and billing program that you can install on your PC, hosting or in your Synology NAS. With it you can manage the day to day of your company: create invoices, orders, delivery notes, estimates, accounting, inventory etc. So, whether you are a freelancer or an SME, don’t hesitate and try FacturaScripts which is totally free. It won’t take you more than a few minutes to discover that it has everything you need for your business. In this step by step guide I will show you how to install FacturaScripts on your Synology NAS using Docker & Portainer.

💡Note: This guide works perfectly with the latest FacturaScripts v2021.2 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

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

1 FacturaScripts Synology NAS Set up

  • STEP 4

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 5

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

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

version: '3'
services:
  mysql:
    image: mysql
    container_name: FacturaScripts-DB
    command: --default-authentication-plugin=mysql_native_password
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: mariushosting
    volumes:
      - /volume1/docker/facturascriptsdb:/var/lib/mysql

  facturascripts:
    image: facturascripts/facturascripts
    container_name: FacturaScripts
    restart: always
    ports:
      - 5379:80
    volumes:
      - /volume1/docker/facturascripts:/var/www/html

  adminer:
    image: adminer
    container_name: FacturaScripts-Adminer
    restart: always
    ports:
      - 5380:8080

Note: Before you paste the code above in the Web editor area, change the value for MYSQL_ROOT_PASSWORD and add your own password. mariushosting is an example for a password. You have to insert your own password.

2 FacturaScripts Synology NAS Set up

  • STEP 6

Scroll down on the page until you see a button called 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.

3 FacturaScripts Synology NAS Set up

  • STEP 7

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

4 FacturaScripts Synology NAS Set up

  • STEP 8

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

  • STEP 9

Now open your browser and type in http://Synology-ip-address:5379 Follow the instructions in the image below. Add your own mysql IP Address on the Database Server area. Type in the database mysql password that you have previously created at STEP 5. Select your language, your time zone then click Accept.

FacturaScripts Synology NAS Set up 6 new 2023

You will find your Database Server IP Address in Portainer / Containers / FacturaScripts-DB / IP Address.

5 FacturaScripts Synology NAS Set up

  • STEP 10

Login with the default username and password admin, admin. You can change the default password on STEP 11 below. Follow the instructions in the image below.

FacturaScripts Synology NAS Set up 8

  • STEP 11

Add the information about your Business then change your default login password. Click Continue. Follow the instructions in the image below.

FacturaScripts Synology NAS Set up 9

  • STEP 12

Add your country default tax and VAT regime. Click Continue. Follow the instructions in the image below.

FacturaScripts Synology NAS Set up 10

Enjoy FacturaScripts!

FacturaScripts Synology NAS Set up 11

Note: If you want to run the FacturaScripts container over HTTPS, check my guide on How to Run Docker Containers Over HTTPS.

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 FacturaScripts 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.

This post was updated on Saturday / February 24th, 2024 at 8:26 PM