Skip to content

Instantly share code, notes, and snippets.

@ericmigi
Created December 24, 2019 19:54
Show Gist options
  • Select an option

  • Save ericmigi/48f702fb0db059a4690e3e44d56a211b to your computer and use it in GitHub Desktop.

Select an option

Save ericmigi/48f702fb0db059a4690e3e44d56a211b to your computer and use it in GitHub Desktop.
docker-compose for all the bridges
version: "3.7"
services:
mautrix-telegram:
container_name: pi-telegram
image: novachat/pi-telegram
network_mode: host
logging:
options:
max-size: 10m
restart: unless-stopped
volumes:
- ./bridges/mautrix-telegram:/data
- /var/log/mautrix-telegram:/var/log/mautrix-telegram
mautrix-whatsapp:
container_name: pi-whatsapp
image: novachat/pi-whatsapp
network_mode: host
logging:
options:
max-size: 10m
restart: unless-stopped
volumes:
- ./bridges/mautrix-whatsapp:/data
- /var/log/mautrix-whatsapp:/var/log/mautrix-whatsapp
mautrix-facebook:
container_name: pi-facebook
image: novachat/pi-facebook
network_mode: host
logging:
options:
max-size: 10m
restart: unless-stopped
volumes:
- ./bridges/mautrix-facebook:/data
- /var/log/mautrix-facebook:/var/log/mautrix-facebook
mautrix-hangouts:
container_name: pi-hangouts
image: novachat/pi-hangouts
network_mode: host
logging:
options:
max-size: 10m
restart: unless-stopped
volumes:
- ./bridges/mautrix-hangouts:/data
- /var/log/mautrix-hangouts:/var/log/mautrix-hangouts
mx-puppet-slack:
container_name: pi-slack
image: novachat/pi-slack
network_mode: host
restart: unless-stopped
volumes:
- ./bridges/mx-puppet-slack:/data
mx-puppet-twitter:
container_name: pi-twitter
image: novachat/pi-twitter
network_mode: host
restart: unless-stopped
volumes:
- ./bridges/mx-puppet-twitter:/data
mx-puppet-instagram:
container_name: pi-instagram
image: novachat/pi-instagram
network_mode: host
restart: unless-stopped
volumes:
- ./bridges/mx-puppet-instagram:/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment