-
Notifications
You must be signed in to change notification settings - Fork 0
/
devspace.yaml
executable file
·51 lines (51 loc) · 1.05 KB
/
devspace.yaml
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
version: v1beta9
images:
app1:
image: devspace1
preferSyncOverRebuild: true
injectRestartHelper: true
appendDockerfileInstructions:
- USER root
build:
docker:
skipPush: true
app2:
image: devspace2
preferSyncOverRebuild: true
injectRestartHelper: true
appendDockerfileInstructions:
- USER root
build:
docker:
skipPush: true
deployments:
- name: devspace-container-log-bug
helm:
componentChart: true
values:
containers:
- image: devspace1
- image: devspace2
env:
- name: APP_PORT
value: "3001"
dev:
sync:
- imageName: app1
excludePaths:
- .git/
uploadExcludePaths:
- Dockerfile
- node_modules/
- devspace.yaml
onUpload:
restartContainer: true
- imageName: app2
excludePaths:
- .git/
uploadExcludePaths:
- Dockerfile
- node_modules/
- devspace.yaml
onUpload:
restartContainer: true