-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
39 lines (37 loc) · 880 Bytes
/
compose.yml
File metadata and controls
39 lines (37 loc) · 880 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
services:
dev:
build:
context: .
target: dev
volumes:
- .:/app
- /app/node_modules
ports:
- 5173:5173
# develop:
# watch:
# - action: sync
# path: ./src
# target: /app/src
# ignore:
# - node_modules/
# - action: rebuild
# path: package.json
tty: true
prod:
build:
context: .
target: prod
volumes:
- ./dist:/var/www/app
- ./prod.conf:/etc/nginx/conf.d/prod.conf
ports:
- 80:80
subfont:
build:
context: .
target: subfont
volumes:
- .:/app
- /app/node_modules
tty: true