Install Jinya on your server
Installing Jinya is very easy. You only need to grab the most recent build from here, extract it in a directory on your server and then simple point your domain to the created directory. You also need to make sure to create a MySQL database you can use. If you have issues installing Jinya feel free to contact us via the contact form or just send us an email to developers@jinya.de.
Install Jinya using Docker
Installing Jinya using Docker is documented here. You can also use the following docker-compose.yaml to run your installation.
version: '3.7'
services:
jinya-mysql-database:
image: library/mariadb:latest
environment:
MYSQL_DATABASE: jinya
MYSQL_PASSWORD: jinya
MYSQL_ROOT_PASSWORD: jinya
MYSQL_USER: jinya
ports:
- 3306:3306
jinya-cms:
image: jinyacms/jinya-cms:latest
ports:
- 8080:80
links:
- jinya-mysql-database