Initial commit: Beeper Bridge Docker Setup with Migration Script

This commit is contained in:
Gemini Bot
2025-12-05 02:54:37 +00:00
commit ccc5fc111c
7 changed files with 180 additions and 0 deletions

51
docker-compose.yml Normal file
View File

@@ -0,0 +1,51 @@
services:
whatsapp:
container_name: beeper-whatsapp
image: dock.mau.dev/mautrix/whatsapp:latest
restart: unless-stopped
volumes:
- ./data/whatsapp:/data
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
telegram:
container_name: beeper-telegram
image: dock.mau.dev/mautrix/telegram:latest
restart: unless-stopped
volumes:
- ./data/telegram:/data
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
signal:
container_name: beeper-signal
image: dock.mau.dev/mautrix/signal:latest
restart: unless-stopped
volumes:
- ./data/signal:/data
environment:
- UID=1000
- GID=1000
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
googlechat:
container_name: beeper-googlechat
image: dock.mau.dev/mautrix/googlechat:latest
restart: unless-stopped
volumes:
- ./data/googlechat:/data
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"