Cleaned up some missing services by removing sensitive data into .env files
This commit is contained in:
33
matrix-bots/compose.yml
Normal file
33
matrix-bots/compose.yml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user