Browse Source

refactor: Move to explicit docker.io/* image references.

* Some runtimes (e.g. podman), require explicit registries in image URLs
 or will prompt for the user to select one, which breaks things like
 VSCode remote container rebuilds.
xmkb
Peter Johanson 3 years ago committed by Pete Johanson
parent
commit
5cc7c280a5
  1. 2
      .devcontainer/Dockerfile
  2. 2
      .github/workflows/build.yml
  3. 2
      .github/workflows/hardware-metadata-validation.yml
  4. 2
      .github/workflows/test.yml

2
.devcontainer/Dockerfile

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
FROM zmkfirmware/zmk-dev-arm:2.5
FROM docker.io/zmkfirmware/zmk-dev-arm:2.5
COPY .bashrc tmp
RUN mv /tmp/.bashrc ~/.bashrc

2
.github/workflows/build.yml

@ -14,7 +14,7 @@ jobs: @@ -14,7 +14,7 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: zmkfirmware/zmk-build-arm:2.5
image: docker.io/zmkfirmware/zmk-build-arm:2.5
strategy:
matrix:
board:

2
.github/workflows/hardware-metadata-validation.yml

@ -29,7 +29,7 @@ jobs: @@ -29,7 +29,7 @@ jobs:
validate-metadata:
runs-on: ubuntu-latest
container:
image: zmkfirmware/zmk-dev-arm:2.5
image: docker.io/zmkfirmware/zmk-dev-arm:2.5
steps:
- uses: actions/checkout@v2
- name: Install dependencies

2
.github/workflows/test.yml

@ -16,7 +16,7 @@ jobs: @@ -16,7 +16,7 @@ jobs:
integration_test:
runs-on: ubuntu-latest
container:
image: zmkfirmware/zmk-build-arm:2.5
image: docker.io/zmkfirmware/zmk-build-arm:2.5
steps:
- name: Checkout
uses: actions/checkout@v2

Loading…
Cancel
Save