File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
docker/benchbase/devcontainer Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 25
25
" --env-file=.env"
26
26
],
27
27
"features" : {
28
- "ghcr.io/devcontainers/features/docker-outside-of-docker" : {},
29
- "ghcr.io/stuartleeks/dev-container-features/shell-history" : {}
28
+ "ghcr.io/devcontainers/features/docker-outside-of-docker" : {
29
+ "moby" : true ,
30
+ "installDockerBuildx" : true ,
31
+ "installDockerComposeSwitch" : true ,
32
+ "version" : " latest" ,
33
+ "dockerDashComposeVersion" : " v2"
34
+ },
35
+ "ghcr.io/stuartleeks/dev-container-features/shell-history" : {},
36
+ "ghcr.io/devcontainers/features/git" : {}
30
37
},
31
38
"containerEnv" : {
32
39
"http_proxy" : " ${localEnv:http_proxy}" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ ARG CONTAINERUSER_GID=1000
17
17
RUN groupadd --non-unique --gid ${CONTAINERUSER_GID} containergroup \
18
18
&& useradd --non-unique --create-home --no-user-group --comment 'Container User' \
19
19
--uid ${CONTAINERUSER_UID} --gid ${CONTAINERUSER_GID} containeruser \
20
+ && echo 'ubuntu ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers \
20
21
&& echo 'containeruser ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
21
22
RUN mkdir -p /benchbase/results && chown -R containeruser:containergroup /benchbase/
22
23
USER containeruser
You can’t perform that action at this time.
0 commit comments