Skip to content

Commit

Permalink
Merge branch 'main' into fixup-advanced-monitoring-ci-pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bpkroth authored Feb 14, 2025
2 parents ab8678b + c370656 commit ce2b83f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,15 @@
"--env-file=.env"
],
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker": {},
"ghcr.io/stuartleeks/dev-container-features/shell-history": {}
"ghcr.io/devcontainers/features/docker-outside-of-docker": {
"moby": true,
"installDockerBuildx": true,
"installDockerComposeSwitch": true,
"version": "latest",
"dockerDashComposeVersion": "v2"
},
"ghcr.io/stuartleeks/dev-container-features/shell-history": {},
"ghcr.io/devcontainers/features/git": {}
},
"containerEnv": {
"http_proxy": "${localEnv:http_proxy}",
Expand Down
1 change: 1 addition & 0 deletions docker/benchbase/devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ ARG CONTAINERUSER_GID=1000
RUN groupadd --non-unique --gid ${CONTAINERUSER_GID} containergroup \
&& useradd --non-unique --create-home --no-user-group --comment 'Container User' \
--uid ${CONTAINERUSER_UID} --gid ${CONTAINERUSER_GID} containeruser \
&& echo 'ubuntu ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers \
&& echo 'containeruser ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
RUN mkdir -p /benchbase/results && chown -R containeruser:containergroup /benchbase/
USER containeruser
Expand Down

0 comments on commit ce2b83f

Please sign in to comment.