1
0
Fork 0
Repository to generate forgejo.mixinet.net container images
Find a file
Sergio Talens-Oliag 70aa30aa5e
All checks were successful
multi-semantic-release / multi-semantic-release (push) Successful in 19s
fix(hugo-adoc): run apk upgrade before installing packages
2025-03-18 14:41:44 +01:00
.forgejo fix(multi-semantic-release): simplify images list processing on the template & workflow code. 2025-03-17 19:12:57 +01:00
alpine-mixinet feat(alpine-mixinet): force initial image tag 2025-03-14 17:12:36 +01:00
hugo-adoc fix(hugo-adoc): run apk upgrade before installing packages 2025-03-18 14:41:44 +01:00
multi-semantic-release feat(multi-semantic-release): force initial image tag 2025-03-14 17:15:56 +01:00
node-mixinet feat(node-mixinet): force initial image tag 2025-03-14 17:14:34 +01:00
remark42 feat(remark42): initial image 2025-03-15 10:33:28 +01:00
README.md Initial commit. 2025-03-14 17:10:22 +01:00

Mixinet OCI images repository

This repository contains Dockerfiles for images created for the mixinet forgejo instance, all the images are available from the OCI organization (the packages section also contains mirrored images from other sources, see the mirrors project for those).

The repository is a monorepo managed using multi-semantic-release.

Bootstraping

As some of the workflows use images generated on the repository itself, the first step is to build the required images locally and push them to the registry (we are assuming that the user has already done a docker login with the right credentials, of course):

for img in alpine-mixinet node-mixinet multi-semantic-release; do
  docker build -t forgejo.mixinet.net/oci/$img:1.0.0 $img
  docker tag forgejo.mixinet.net/oci/$img:1.0.0 forgejo.mixinet.net/oci/$img:latest
  docker push forgejo.mixinet.net/oci/$img:1.0.0
  docker push forgejo.mixinet.net/oci/$img:latest
done

Once the images are pushed we should run the mirrors workflow to make sure that things will work as expected once we try to build any image, as the OCI_MIRROR_PREFIX is passed to the build image job.