Initial commit: Beeper Bridge Docker Setup with Migration Script
This commit is contained in:
51
docker-compose.yml
Normal file
51
docker-compose.yml
Normal 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"
|
||||
Reference in New Issue
Block a user