blob: 3a896aa635d1ddd2237ce98ea3b8d2d1e61bdfde [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:
simonf9d60942022-09-12 14:26:53 -04008 - ./client:/web-client/client # Add bind mount to hot-reload client
9 - /web-client/client/node_modules/ # Ignore node_modules from bind mount
simon3c67a472022-09-11 01:30:02 -040010 ports:
11 - "3000:3000"
12 stdin_open: true
simonf9d60942022-09-12 14:26:53 -040013 depends_on:
14 - jami-daemon
15
16 jami-daemon:
17 image: jami-daemon
18 build:
19 context: ./daemon
20 args:
21 config_args: "--with-nodejs"