blob: affc5ee4ea37e7dca21bb3f52b2c4edbdd0f4222 [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
simon9d12dc42022-10-27 23:12:20 -04006 build:
7 context: .
8 target: development
simon3c67a472022-09-11 01:30:02 -04009 volumes:
simonc7d52452022-09-23 02:09:42 -040010 # Add bind mounts for hot-reload
simond8ca2f22022-10-11 23:30:55 -040011 - ./client/src:/web-client/client/src
12 - ./server/src:/web-client/server/src
simon3c67a472022-09-11 01:30:02 -040013 ports:
simond8ca2f22022-10-11 23:30:55 -040014 - "3001:3001"
simon3c67a472022-09-11 01:30:02 -040015 - "3000:3000"
simon949e02d2022-10-15 02:25:36 -040016 - "5000:5000"
simon3c67a472022-09-11 01:30:02 -040017 stdin_open: true
simonf9d60942022-09-12 14:26:53 -040018 depends_on:
19 - jami-daemon
20
21 jami-daemon:
22 image: jami-daemon
23 build:
24 context: ./daemon
25 args:
26 config_args: "--with-nodejs"