-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.override.yml
More file actions
45 lines (41 loc) · 1011 Bytes
/
compose.override.yml
File metadata and controls
45 lines (41 loc) · 1011 Bytes
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
# Development setup (can be stripped for production)
services:
dms-dev:
restart: no
command: ["--debug"] # Enable debug output during development
environment:
- DEVELOPMENT=true
volumes:
- ./ingest:/var/dms/ingest
build: .
develop:
watch:
- path: ./server
target: /app/server
action: sync+restart
- path: ./locales
target: /app/locales
action: sync+restart
- path: ./main.ts
target: /app/main.ts
action: sync+restart
- path: ./static
target: /app/static
action: sync
- path: ./config
target: /app/config
action: sync+restart
- path: ./deno.lock
action: rebuild
- path: ./client
action: rebuild
- path: ./theme.scss
action: rebuild
- path: ./scripts
action: rebuild
mongo:
ports:
- "27017:27017"
gotenberg:
ports:
- "3000:3000"