Ir al contenido principal

Install using Docker Compose

Instalación

Descargar los archivos necesarios:

wget -O docker-compose.yml https://gitlab.com/technostructures/kazarma/kazarma/-/raw/main/docker-compose.production.yml
wget -O .env https://gitlab.com/technostructures/kazarma/kazarma/-/raw/main/.env.example

Configurar

Modifique el archivo .env según sus necesidades. The configuration options are explained here.

Generar secretos:

(echo -n "DATABASE_PASSWORD="; openssl rand -hex 64) >> .env
(echo -n "SECRET_KEY_BASE="; openssl rand -hex 64) >> .env
(echo -n "HOMESERVER_TOKEN="; openssl rand -hex 64) | tee /dev/tty >> .env
(echo -n "ACCESS_TOKEN="; openssl rand -hex 64) | tee /dev/tty >> .env

Configure your Matrix homeserver

Configure you Matrix homeserver, using the generated homeserver token and access token.

Ejecutar las migraciones

docker compose run --rm kazarma eval "Kazarma.Release.migrate()"

Lanzar Kazarma

docker compose up -d