Skip to main content

I host the software myself!

Congratulations on your Reniway License purchase! We will guide you step by step in order to achieve a succesfull installation.

System requirements

Installing the software

To succesfully install our software the first thing you need to install is Docker. You need to identiofy your distro and further instructions you can find here.

The Reniver software

You can download the necessary software here. (you will need the correct access/registries for pulling our docker images) This will contain the docker-compose file that can pull all necessities.

After succesfully running docker compose you should be able to access http://localhost and the login page should appear.

info

If you need HTTPS you are probably interested in the Reverse proxy documentation.

Want to pull the docker containers yourself?

You can create your own docker-compose.yml file or expeand your existing docker compose file. For example:

# docker-compose.yml
---

services:
reniway:
image: reniver/reniway
container_name: reniway
volumes:
- reniway:/usr/share/Reniver
restart: always
ports:
- 4840:4840
- 5020:5020
- 5030:5030

reniway-ui:
image: reniver/reniway-ui
container_name: reniway-ui
restart: always
ports:
- 80:80

volumes:
reniway:

After starting the compose project you can access Reniway using a web browser at http://localhost/.