Add documentation

This commit is contained in:
Alexander Schäferdiek 2024-12-12 08:25:07 +01:00
parent 27cd25a155
commit 5246808a12
GPG key ID: 305D8469B16F9241

31
README.md Normal file
View file

@ -0,0 +1,31 @@
# README
This git repository provides docker base images which can be used inside Forgejo's Actions.
## Variants
All published images
* are based on Ubuntu 24 LTS
* inherit from the main base image, so they also include its packages
* are re-published monthly
* are published under the `git.myservermanager.com/msm/` space and _not_ in Docker Hub
| Image name | Packages |
| :------------------------------------- | --------------------------------------: |
| `forgejo-base-executor-image` | `nodejs` `npm` `docker` `docker-buildx` |
| `forgejo-base-executor-image-make-cgo` | `build-essential` `make` `clang` |
### Usage
```yaml
jobs:
build:
runs-on: docker
container:
image: git.myservermanager.com/msm/forgejo-base-executor-image-make-cgo
steps:
- name: Test
run: |
echo 'Hello'
```