Advertisement
Reanimatolog

MM + WebRTC docker-compose

Jun 18th, 2018
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. version: "2"
  2.  
  3. services:
  4. webrtc:
  5. image: mattermost/webrtc
  6. container_name: webrtc
  7. restart: unless-stopped
  8. ports:
  9. - "7088:7088"
  10. - "7089:7089"
  11. - "8188:8188"
  12. - "8189:8189"
  13.  
  14. messaging:
  15. image: mattermost/mattermost-preview
  16. container_name: mattermost
  17. restart: unless-stopped
  18. ports:
  19. - "80:8065"
  20. - "443:443"
  21. environment:
  22. - MM_USERNAME=mattermost_user
  23. - MM_PASSWORD=12345678
  24. - MM_DBNAME=mattermost
  25. links:
  26. - webrtc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement