Skip to content
Draft
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Docker Info

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
docker-info:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [linux.dgx.b200, linux.aws.a100, linux.g5.4xlarge.nvidia.gpu]

steps:
- name: Check who am i
run: whoami; id

- name: Run docker info
run: docker info

- name: Check contexts
run: docker context ls

- name: Print docker config
run: cat ~/.docker/config.json
Loading