Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 781 Bytes

File metadata and controls

22 lines (14 loc) · 781 Bytes

example-docker

view-action-graph

A simple Hello World Docker image, built and pushed to ghcr.io using an Actionforge graph as the CI/CD pipeline.

Run

docker build -t hello-world .
docker run hello-world

Graph

The build pipeline is defined as an Actionforge graph in .github/workflows/graphs/build.act:

checkout -> docker/login-action (ghcr.io) -> docker/build-push-action

It runs on every push to main, on pull requests, and on manual dispatch.