feat: fdroid

This commit is contained in:
ange 2024-02-04 22:42:43 +01:00
parent 00a61d0ad4
commit 08b410b586
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
7 changed files with 14 additions and 8 deletions

2
fdroid/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*
!.gitignore

View File

@ -1,9 +1,9 @@
EMAIL= EMAIL=
############## ###############
### Matrix ### ### Synapse ###
############## ###############
MATRIX_BASE_URL=matrix. SYNAPSE_BASE_URL=matrix.
POSTGRES_PASSWORD= POSTGRES_PASSWORD=
PUID=1000 PUID=1000

4
matrix/README.md Normal file
View File

@ -0,0 +1,4 @@
# matrix
./init_config.sh
docker-compose up -d --build

View File

@ -41,14 +41,14 @@ services:
- BASE_URL=COTURN_BASE_URL - BASE_URL=COTURN_BASE_URL
- AUTH_SECRET - AUTH_SECRET
matrix: synapse:
build: matrix build: synapse
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- config:/config/ - config:/config/
- data:/data/ - data:/data/
environment: environment:
- SYNAPSE_SERVER_NAME=$MATRIX_BASE_URL - SYNAPSE_SERVER_NAME=$SYNAPSE_BASE_URL
- SYNAPSE_CONFIG_DIR=/config - SYNAPSE_CONFIG_DIR=/config
- SYNAPSE_DATA_DIR=/data - SYNAPSE_DATA_DIR=/data
- UID=$PUID - UID=$PUID

View File

@ -1,4 +1,4 @@
#!/usr/bin/env -S - bash -e #!/bin/bash -e
set -a set -a
. .env . .env