-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.override.yml
54 lines (50 loc) · 1.25 KB
/
compose.override.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
services:
mobile:
build:
context: Client
dockerfile: mobile.Dockerfile
target: development
restart: unless-stopped
networks:
- reasn-network
ports:
- "${MOBILE_LISTEN_PORT:-8081}:${MOBILE_LISTEN_PORT:-8081}"
env_file:
- .env
depends_on:
- server
develop:
watch:
- action: rebuild
path: ./Client/reasn-client/yarn.lock
- action: sync
path: ./Client/reasn-client/apps/native
target: /source/apps/native
- action: sync
path: ./Client/reasn-client/packages
target: /source/packages
web:
build:
target: development
develop:
watch:
- action: rebuild
path: ./Client/reasn-client/yarn.lock
- action: sync
path: ./Client/reasn-client/apps/web
target: /source/apps/web
- action: sync
path: ./Client/reasn-client/packages
target: /source/packages
server:
build:
target: development
develop:
watch:
- action: rebuild
path: ./Server/ReasnAPI/ReasnAPI
postgres:
ports:
- "5432:5432"
volumes:
- ./Database/init-dev-data.sql:/docker-entrypoint-initdb.d/03-init-dev-data.sql