blob: 7aef7d9e1475a1cf48df15019d2a0ea54bf97e3b [file] [log] [blame]
simonf9d60942022-09-12 14:26:53 -04001version: "3.9"
simon3c67a472022-09-11 01:30:02 -04002
3services:
4 jami-web:
simon3c67a472022-09-11 01:30:02 -04005 image: jami-web
simonf9d60942022-09-12 14:26:53 -04006 build: .
simon3c67a472022-09-11 01:30:02 -04007 volumes:
simonc7d52452022-09-23 02:09:42 -04008 # Add bind mounts for hot-reload
simond8ca2f22022-10-11 23:30:55 -04009 - ./client/src:/web-client/client/src
10 - ./server/src:/web-client/server/src
simon3c67a472022-09-11 01:30:02 -040011 ports:
simond8ca2f22022-10-11 23:30:55 -040012 - "3001:3001"
simon3c67a472022-09-11 01:30:02 -040013 - "3000:3000"
simon949e02d2022-10-15 02:25:36 -040014 - "5000:5000"
simon3c67a472022-09-11 01:30:02 -040015 stdin_open: true
simonf9d60942022-09-12 14:26:53 -040016 depends_on:
17 - jami-daemon
18
19 jami-daemon:
20 image: jami-daemon
21 build:
22 context: ./daemon
23 args:
24 config_args: "--with-nodejs"