add matrix server
it works really good! Some funky reverse proxy config stuff that needs to be tracked in source control though!
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
immich.env
|
||||
downloadin.env
|
||||
downloadin.env
|
||||
matrix.env
|
||||
@@ -1,19 +1,19 @@
|
||||
# Continuwuity
|
||||
services:
|
||||
homeserver:
|
||||
matrix:
|
||||
image: docker.io/jadedblueeyes/continuwuity
|
||||
container_name: matrix
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8448:6167
|
||||
- 6167:6167
|
||||
volumes:
|
||||
- db:/var/lib/continuwuity
|
||||
- ${ETC_PATH}:/var/lib/continuwuity
|
||||
environment:
|
||||
CONTINUWUITY_SERVER_NAME: matrix.soupclown.com
|
||||
CONTINUWUITY_SERVER_NAME: soupclown.com
|
||||
CONTINUWUITY_DATABASE_PATH: /var/lib/continuwuity
|
||||
CONTINUWUITY_PORT: 6167
|
||||
CONTINUWUITY_MAX_REQUEST_SIZE: 20000000 # in bytes, ~20 MB
|
||||
CONTINUWUITY_ALLOW_REGISTRATION: "true"
|
||||
CONTINUWUITY_REGISTRATION_TOKEN: "YOUR_TOKEN" # A registration token is required when registration is allowed.
|
||||
CONTINUWUITY_REGISTRATION_TOKEN: ${CONTINUWUITY_REGISTRATION_TOKEN}
|
||||
CONTINUWUITY_ALLOW_FEDERATION: "true"
|
||||
CONTINUWUITY_ALLOW_CHECK_FOR_UPDATES: "true"
|
||||
CONTINUWUITY_TRUSTED_SERVERS: '["matrix.org"]'
|
||||
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose --env-file $(pwd)/matrix.env -f matrix-compose.yaml down
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose --env-file $(pwd)/matrix.env -f matrix-compose.yaml pull
|
||||
Executable
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker compose --env-file $(pwd)/matrix.env -f matrix-compose.yaml up -d
|
||||
Reference in New Issue
Block a user