File tree 2 files changed +55
-1
lines changed
docker/benchbase/devcontainer
2 files changed +55
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source = "https://github.com/cmu-db/benchbase/"
8
8
# Also add a few nice cli tools.
9
9
RUN apt-get update \
10
10
&& apt-get -y upgrade \
11
- && apt-get -y install --no-install-recommends sudo vim-nox neovim less bash-completion colordiff git openssh-client jq \
11
+ && apt-get -y install --no-install-recommends sudo vim-nox neovim less bash-completion colordiff git openssh-client jq ripgrep \
12
12
&& apt-get clean && rm -rf /var/lib/apt/lists/*
13
13
14
14
# Add a containeruser that allows vscode/codespaces to map the local host user
Original file line number Diff line number Diff line change 51
51
<profiles >
52
52
<profile >
53
53
<id >sqlite</id >
54
+ <activation >
55
+ <property >
56
+ <name >env.BENCHBASE_PROFILE</name >
57
+ <value >sqlite</value >
58
+ </property >
59
+ </activation >
54
60
<properties >
55
61
<classifier >sqlite</classifier >
56
62
</properties >
64
70
</profile >
65
71
<profile >
66
72
<id >postgres</id >
73
+ <activation >
74
+ <property >
75
+ <name >env.BENCHBASE_PROFILE</name >
76
+ <value >postgres</value >
77
+ </property >
78
+ </activation >
67
79
<properties >
68
80
<classifier >postgres</classifier >
69
81
</properties >
77
89
</profile >
78
90
<profile >
79
91
<id >mysql</id >
92
+ <activation >
93
+ <property >
94
+ <name >env.BENCHBASE_PROFILE</name >
95
+ <value >mysql</value >
96
+ </property >
97
+ </activation >
80
98
<properties >
81
99
<classifier >mysql</classifier >
82
100
</properties >
91
109
<!-- Oracle DB driver needed in profile compilation -->
92
110
<profile >
93
111
<id >oracle</id >
112
+ <activation >
113
+ <property >
114
+ <name >env.BENCHBASE_PROFILE</name >
115
+ <value >oracle</value >
116
+ </property >
117
+ </activation >
94
118
<properties >
95
119
<classifier >oracle</classifier >
96
120
</properties >
106
130
</profile >
107
131
<profile >
108
132
<id >mariadb</id >
133
+ <activation >
134
+ <property >
135
+ <name >env.BENCHBASE_PROFILE</name >
136
+ <value >mariadb</value >
137
+ </property >
138
+ </activation >
109
139
<properties >
110
140
<classifier >mariadb</classifier >
111
141
</properties >
119
149
</profile >
120
150
<profile >
121
151
<id >spanner</id >
152
+ <activation >
153
+ <property >
154
+ <name >env.BENCHBASE_PROFILE</name >
155
+ <value >spanner</value >
156
+ </property >
157
+ </activation >
122
158
<properties >
123
159
<classifier >spanner</classifier >
124
160
</properties >
132
168
</profile >
133
169
<profile >
134
170
<id >cockroachdb</id >
171
+ <activation >
172
+ <property >
173
+ <name >env.BENCHBASE_PROFILE</name >
174
+ <value >cockroachdb</value >
175
+ </property >
176
+ </activation >
135
177
<properties >
136
178
<classifier >cockroachdb</classifier >
137
179
</properties >
145
187
</profile >
146
188
<profile >
147
189
<id >phoenix</id >
190
+ <activation >
191
+ <property >
192
+ <name >env.BENCHBASE_PROFILE</name >
193
+ <value >phoenix</value >
194
+ </property >
195
+ </activation >
148
196
<properties >
149
197
<classifier >phoenix</classifier >
150
198
</properties >
158
206
</profile >
159
207
<profile >
160
208
<id >sqlserver</id >
209
+ <activation >
210
+ <property >
211
+ <name >env.BENCHBASE_PROFILE</name >
212
+ <value >sqlserver</value >
213
+ </property >
214
+ </activation >
161
215
<properties >
162
216
<classifier >sqlserver</classifier >
163
217
</properties >
You can’t perform that action at this time.
0 commit comments