Cleaned up some missing services by removing sensitive data into .env files

This commit is contained in:
2025-07-06 16:35:26 +00:00
parent cd92f9be2e
commit 3e27cafc07
7 changed files with 159 additions and 1 deletions

33
matrix-bots/compose.yml Normal file
View File

@@ -0,0 +1,33 @@
services:
matrix-registration-bot:
image: moanos/matrix-registration-bot:latest
environment:
LOGGING_LEVEL: DEBUG
BOT_SERVER: "https://nearfuture.industries"
BOT_USERNAME: "registration-bot"
BOT_PASSWORD: ${BOT_PW}
API_BASE_URL: 'https://synapse.nearfuture.industries'
API_TOKEN: ${API_TOK}
volumes:
- /home/fejy/docker/matrix-bots/matrix-registration-bot/:/data/
maubot:
image: dock.mau.dev/maubot/maubot
container_name: maubot
volumes:
- /home/fejy/docker/matrix-bots/maubot/:/data:z
ports:
- 29316:29316
networks:
- proxy
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.maubot.rule=Host(`maubot.nearfuture`)"
- "traefik.http.routers.maubot.entrypoints=web"
networks:
proxy:
external: true