24 lines
656 B
YAML
24 lines
656 B
YAML
version: '3'
|
|
|
|
services:
|
|
bot:
|
|
image: git.nolog.cz/nolog.cz/matrix-invitation-dealer:latest
|
|
network_mode: "host" # FIXME
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
# matrix credentials
|
|
MATRIX_HOMESERVER: "matrix.nolog.chat"
|
|
MATRIX_USER_ID: "@invite:nolog.chat"
|
|
MATRIX_USER_PASSWORD: "REDACTED"
|
|
|
|
# admin credentials
|
|
SYNAPSE_ADMIN_HOMESERVER: "http://127.0.0.1:8008"
|
|
SYNAPSE_ADMIN_ACCESS_TOKEN: "REDACTED"
|
|
|
|
# accept invites from users with the following suffix
|
|
USER_ID_SUFFIX: "nolog.chat"
|
|
|
|
# restrictions and quotas
|
|
USER_REQUIRED_AGE: "14d"
|
|
INVITE_CODE_QUOTA: "10/7d"
|