Rallly is an event organizer that helps you schedule group meetings with friends, colleagues and teams. With Rallly you can create meeting polls to find the best date and time to organize an event based on your participants’ availability. It saves time and avoids back-and-forth emails. In this step by step guide I will show you how to install Rallly on your Synology NAS using Docker & Portainer.
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.
STEP 5
Now click the “Create” button. Follow the instructions in the image below.
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 Rallly. After that, add the following instructions:
Source:
Protocol: HTTPS
Hostname: rallly.yourname.synology.me
Port: 443
Check Enable HSTS
Destination:
Protocol: HTTP
Hostname: localhost
Port: 9861
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.
STEP 8
Go to Control Panel / Network / Connectivity tab/ Check Enable HTTP/2 then click Apply. Follow the instructions in the image below.
STEP 9
Go to Control Panel / Security / Advanced tab/ Check Enable HTTP Compression then click Apply. Follow the instructions in the image below.
STEP 10
Go to File Station and open the docker folder. Inside the docker folder, create one new folder and name it rallly. Follow the instructions in the image below.
Note: Be careful to enter only lowercase, not uppercase letters.
STEP 11
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 12
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.
STEP 13
In the Name field type in rallly. Follow the instructions in the image below.
services: db: image: postgres:17 container_name: Rallly-DB hostname: rallly-db security_opt: - no-new-privileges:true healthcheck: test: ["CMD", "pg_isready", "-q", "-d", "rallly", "-U", "ralllyuser"] timeout: 45s interval: 10s retries: 10 volumes: - /volume1/docker/rallly:/var/lib/postgresql/data environment: POSTGRES_DB: rallly POSTGRES_USER: ralllyuser POSTGRES_PASSWORD: ralllypass restart: on-failure:5 rallly: image: lukevella/rallly:latest container_name: Rallly hostname: rallly security_opt: - no-new-privileges:true ports: - 9861:3000 environment: DATABASE_URL: postgres://ralllyuser:ralllypass@rallly-db:5432/rallly SECRET_PASSWORD: MariushostingMariushostingMari13 NEXT_PUBLIC_BASE_URL: https://rallly.yourname.synology.me SUPPORT_EMAIL: Your-own-gmail-address SMTP_HOST: smtp.gmail.com SMTP_PORT: 587 SMTP_USER: Your-own-gmail-address SMTP_PWD: Your-own-app-password restart: on-failure:5 depends_on: db: condition: service_started
Note: Before you paste the code above in the Web editor area below, change the value for SECRET_PASSWORD and add your own SECRET PASSWORD. MariushostingMariushostingMari13 is an example for a SECRET_PASSWORD. You should invent your own Value. Add 32 random characters, both letters and numbers
Note: Before you paste the code above in the Web editor area below, change the value for NEXT_PUBLIC_BASE_URL and type in your own synology.me DDNS with https:// at the beginning that you have previously created at STEP 6.
Note: Before you paste the code above in the Web editor area below, change the value for SUPPORT_EMAIL and type in your own Gmail address. Refer to STEP 11.
Note: Before you paste the code above in the Web editor area below, change the value for SMTP_USER and type in your own Gmail address. Refer to STEP 11.
Note: Before you paste the code above in the Web editor area below, change the value for SMTP_PWD and type in your own Gmail app password. Refer to STEP 11.
STEP 14
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.
STEP 15
If everything goes right, you will see the following message at the top right of your screen: “Success Stack successfully deployed“.
STEP 16
Go back to STEP 1 or you will deal with karma 🙂.
STEP 17
Now open your browser and type in your HTTPS/SSL certificate like this https://rallly.yourname.synology.me In my case it’s https://rallly.mariushosting.synology.me If everything goes right, you will see the RALLY Login page. Click Register. Follow the instructions in the image below.
STEP 18
Type in your own Name and Email address, then click Continue. Follow the instructions in the image below.
STEP 19
Check your email to find out the 6-digit verification code. Follow the instructions in the image below. ⚠️Note: To receive the email with the 6-digit code, you need to add your SMTP details as per the instructions at STEP 13, otherwise you can’t continue the installation process.
STEP 20
In the Verify your email field, type in your own 6-digit verification code that you have previously received at STEP 19. Click Continue. Follow the instructions in the image below.
STEP 21
Let’s create your first poll! Click New Poll. Follow the instructions in the image below.
STEP 22
Give a Title to your poll, add a Location and the Description. Select the potential dates or times for your poll event, then scroll down the page. Follow the instructions in the image below.
STEP 23
Customize the behavior of your poll, then click Create poll. Follow the instructions in the image below.
STEP 24
Share the poll link with your friends or teams. Follow the instructions in the image below.
STEP 25
You and the people you have invited to the poll will have 3 voting options: Yes, If need be and No. Under the poll, you and your team can communicate in real time by commenting.
Enjoy Rallly!
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 Rallly 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 Friday / October 25th, 2024 at 9:52 AM