Skip to content

Commit

Permalink
devcontainer build with qemu setup (#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt authored Dec 7, 2024
1 parent de44258 commit f4cd47d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/docker-in-docker/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// docker/moby version is that old because newer ones failed to install under emulation
// see https://github.com/moby/moby/issues/48987#issuecomment-2507267417
// and https://github.com/moby/moby/issues/47895#issuecomment-2507528678
"version": "23.0.7",
"version": "26.1.5",
"dockerDashComposeVersion": "none",
"installDockerComposeSwitch": "false"
},
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/docker-in-docker_slim/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "23.0.7",
"version": "26.1.5",
"dockerDashComposeVersion": "none",
"installDockerComposeSwitch": "false"
},
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/docker-outside-of-docker/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"version": "23.0.7",
"version": "26.1.5",
"dockerDashComposeVersion": "none",
"installDockerComposeSwitch": "false"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"version": "23.0.7",
"version": "26.1.5",
"dockerDashComposeVersion": "none",
"installDockerComposeSwitch": "false"
},
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
required: false
type: string
# trigger on published release event
# to created the devspace container when the packages are published
# to created the dev container when the packages are published
release:
types:
- published
Expand Down Expand Up @@ -54,6 +54,9 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down

0 comments on commit f4cd47d

Please sign in to comment.