Compare commits

..

13 Commits
v57 ... master

Author SHA1 Message Date
Héctor Molinero Fernández
1dbbeb4fbd Add volume option to example command, fixes #12 2024-08-17 17:08:15 +02:00
Héctor Molinero Fernández
cb8849fc1e Add note about KVM option, fixes #14 2024-08-17 17:02:53 +02:00
Héctor Molinero Fernández
38c0c79d76 Update base image to Ubuntu 24.04 2024-07-26 23:28:56 +02:00
Héctor Molinero Fernández
3e78cb0215 Create /run/samba/ 2024-07-26 23:26:15 +02:00
Héctor Molinero Fernández
1a91d57625 Update ReactOS to v0.4.14-119 2024-07-20 17:28:59 +02:00
Héctor Molinero Fernández
5028c72619 Update BusyBox to 5398-g89ae34445 2024-07-20 17:28:38 +02:00
Héctor Molinero Fernández
a5d152ae24 Update Websockify to v0.12.0 2024-07-20 17:27:57 +02:00
Héctor Molinero Fernández
3d5f2b942b Update noVNC to v1.5.0 2024-07-20 17:22:53 +02:00
Héctor Molinero Fernández
af641b071b Do not copy QEMU user binary 2024-07-20 16:39:26 +02:00
Héctor Molinero Fernández
d602925a09 Use "hectorm/ghaction-release" action 2024-07-20 15:40:34 +02:00
Héctor Molinero Fernández
efd183861a Use "hectorm/ghaction-trigger-workflow" action 2024-07-20 14:52:20 +02:00
Héctor Molinero Fernández
4623b1e3c9 Update Dependabot config 2024-07-20 12:50:58 +02:00
Héctor Molinero Fernández
ae82178446 Reformat GitHub YAML files 2024-07-20 11:58:32 +02:00
7 changed files with 114 additions and 129 deletions

View File

@ -1,8 +1,19 @@
# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json
version: 2 version: 2


updates: updates:

- package-ecosystem: "docker"
- package-ecosystem: 'github-actions' directory: "/"
directory: '/'
schedule: schedule:
interval: 'weekly' interval: "weekly"
groups:
docker-all:
patterns: ["*"]

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
github-actions-all:
patterns: ["*"]

View File

@ -1,150 +1,134 @@
name: 'Main' # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Main"


on: on:
push: push:
tags: ['*'] tags: ["*"]
branches: ['*'] branches: ["*"]
pull_request: pull_request:
branches: ['*'] branches: ["*"]
workflow_dispatch: workflow_dispatch:


permissions: {} permissions: {}


jobs: jobs:

build-common-stages: build-common-stages:
name: 'Build common stages' name: "Build common stages"
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
permissions: permissions:
contents: 'read' contents: "read"
strategy: strategy:
matrix: matrix:
stage: ['build'] stage: ["build"]
steps: steps:
- name: 'Checkout project' - name: "Checkout project"
uses: 'actions/checkout@v4' uses: "actions/checkout@v4"
- name: 'Build and save image' - name: "Build and save image"
run: | run: |
make \ make \
IMAGE_REGISTRY="localhost" IMAGE_NAMESPACE="stage" IMAGE_PROJECT="${{ matrix.stage }}" \ IMAGE_REGISTRY="localhost" IMAGE_NAMESPACE="stage" IMAGE_PROJECT="${{ matrix.stage }}" \
IMAGE_BUILD_OPTS="--pull --target ${{ matrix.stage }} --build-arg BUILDKIT_INLINE_CACHE=1" \ IMAGE_BUILD_OPTS="--pull --target ${{ matrix.stage }} --build-arg BUILDKIT_INLINE_CACHE=1" \
build-native-image save-native-image build-native-image save-native-image
- name: 'Upload artifacts' - name: "Upload artifacts"
uses: 'actions/upload-artifact@v4' uses: "actions/upload-artifact@v4"
with: with:
name: 'dist-common-stages' name: "dist-common-stages"
path: './dist/' path: "./dist/"
retention-days: 1 retention-days: 1


build: build:
name: 'Build ${{ matrix.arch }} image' name: "Build ${{ matrix.arch }} image"
needs: ['build-common-stages'] needs: ["build-common-stages"]
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
permissions: permissions:
contents: 'read' contents: "read"
strategy: strategy:
matrix: matrix:
arch: ['native', 'amd64', 'arm64v8'] arch: ["native", "amd64", "arm64v8"]
steps: steps:
- name: 'Checkout project' - name: "Checkout project"
uses: 'actions/checkout@v4' uses: "actions/checkout@v4"
- name: 'Download artifacts' - name: "Download artifacts"
uses: 'actions/download-artifact@v4' uses: "actions/download-artifact@v4"
with: with:
name: 'dist-common-stages' name: "dist-common-stages"
path: './dist/' path: "./dist/"
- name: 'Load common stages' - name: "Load common stages"
run: | run: |
docker system prune --all --force docker system prune --all --force
make IMAGE_REGISTRY="localhost" IMAGE_NAMESPACE="stage" IMAGE_PROJECT="build" load-native-image clean make IMAGE_REGISTRY="localhost" IMAGE_NAMESPACE="stage" IMAGE_PROJECT="build" load-native-image clean
- name: 'Register binfmt entries' - name: "Register binfmt entries"
if: "matrix.arch != 'native'" if: "matrix.arch != 'native'"
run: | run: |
make binfmt-register make binfmt-register
- name: 'Build and save image' - name: "Build and save image"
run: | run: |
make \ make \
IMAGE_BUILD_OPTS="--cache-from localhost/stage/build:latest" \ IMAGE_BUILD_OPTS="--cache-from localhost/stage/build:latest" \
"build-${{ matrix.arch }}-image" "save-${{ matrix.arch }}-image" "build-${{ matrix.arch }}-image" "save-${{ matrix.arch }}-image"
- name: 'Upload artifacts' - name: "Upload artifacts"
if: "startsWith(github.ref, 'refs/tags/v') && matrix.arch != 'native'" if: "startsWith(github.ref, 'refs/tags/v') && matrix.arch != 'native'"
uses: 'actions/upload-artifact@v4' uses: "actions/upload-artifact@v4"
with: with:
name: 'dist-${{ matrix.arch }}' name: "dist-${{ matrix.arch }}"
path: './dist/' path: "./dist/"
retention-days: 1 retention-days: 1


push: push:
name: 'Push ${{ matrix.arch }} image' name: "Push ${{ matrix.arch }} image"
if: "startsWith(github.ref, 'refs/tags/v')" if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['build'] needs: ["build"]
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
permissions: permissions:
contents: 'read' contents: "read"
strategy: strategy:
matrix: matrix:
arch: ['amd64', 'arm64v8'] arch: ["amd64", "arm64v8"]
steps: steps:
- name: 'Checkout project' - name: "Checkout project"
uses: 'actions/checkout@v4' uses: "actions/checkout@v4"
- name: 'Download artifacts' - name: "Download artifacts"
uses: 'actions/download-artifact@v4' uses: "actions/download-artifact@v4"
with: with:
name: 'dist-${{ matrix.arch }}' name: "dist-${{ matrix.arch }}"
path: './dist/' path: "./dist/"
- name: 'Login to Docker Hub' - name: "Login to Docker Hub"
uses: 'docker/login-action@v3' uses: "docker/login-action@v3"
with: with:
registry: 'docker.io' registry: "docker.io"
username: '${{ secrets.DOCKERHUB_USERNAME }}' username: "${{ secrets.DOCKERHUB_USERNAME }}"
password: '${{ secrets.DOCKERHUB_TOKEN }}' password: "${{ secrets.DOCKERHUB_TOKEN }}"
- name: 'Load and push image' - name: "Load and push image"
run: | run: |
make "load-${{ matrix.arch }}-image" "push-${{ matrix.arch }}-image" make "load-${{ matrix.arch }}-image" "push-${{ matrix.arch }}-image"


push-manifest: push-manifest:
name: 'Push manifest' name: "Push manifest"
if: "startsWith(github.ref, 'refs/tags/v')" if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['push'] needs: ["push"]
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
permissions: permissions:
contents: 'read' contents: "read"
steps: steps:
- name: 'Checkout project' - name: "Checkout project"
uses: 'actions/checkout@v4' uses: "actions/checkout@v4"
- name: 'Login to Docker Hub' - name: "Login to Docker Hub"
uses: 'docker/login-action@v3' uses: "docker/login-action@v3"
with: with:
registry: 'docker.io' registry: "docker.io"
username: '${{ secrets.DOCKERHUB_USERNAME }}' username: "${{ secrets.DOCKERHUB_USERNAME }}"
password: '${{ secrets.DOCKERHUB_TOKEN }}' password: "${{ secrets.DOCKERHUB_TOKEN }}"
- name: 'Push manifest' - name: "Push manifest"
run: | run: |
make push-cross-manifest make push-cross-manifest


release-github: publish-github-release:
name: 'Create GitHub release' name: "Publish GitHub release"
if: "startsWith(github.ref, 'refs/tags/v')" if: "startsWith(github.ref, 'refs/tags/v')"
needs: ['push-manifest'] needs: ["push-manifest"]
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
permissions: permissions:
contents: 'write' contents: "write"
steps: steps:
- name: 'Create release' - name: "Publish"
env: uses: "hectorm/ghaction-release@066200d04c3549852afa243d631ea3dc93390f68"
GITHUB_PAT: '${{ secrets.GITHUB_TOKEN }}'
run: |
RELEASE_STATUS="$(curl -fs --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases/tags/${GITHUB_REF_NAME:?}" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--write-out '%{http_code}' --output /dev/null ||:)"
if [ "${RELEASE_STATUS:?}" = '200' ]; then exit 0; fi
RELEASE_ID="$(curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--data "$(jq -rn --arg tag "${GITHUB_REF_NAME:?}" '{"name": $tag, "tag_name": $tag, "generate_release_notes": true}')" | jq -r '.id')"
if [ -z "${RELEASE_ID-}" ] || [ "${RELEASE_ID:?}" = 'null' ]; then exit 1; fi

View File

@ -1,37 +1,22 @@
name: 'Rebuild latest release' # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Rebuild latest release"


on: on:
schedule: schedule:
- cron: '20 04 * * 1' - cron: "20 04 * * 1"
workflow_dispatch: workflow_dispatch:


permissions: {} permissions: {}


jobs: jobs:

trigger-rebuild: trigger-rebuild:
name: 'Trigger rebuild' name: "Trigger rebuild"
runs-on: 'ubuntu-latest' runs-on: "ubuntu-latest"
permissions: permissions:
contents: 'read' actions: "write"
contents: "read"
steps: steps:
- name: 'REST API call' - name: "Trigger rebuild"
env: uses: "hectorm/ghaction-trigger-workflow@04c79e7a4e0c0b94bbcff3829f38359e34f1ea9e"
GITHUB_PAT: '${{ secrets.PERSONAL_GITHUB_TOKEN }}' with:
run: | workflow-id: "main.yml"
RELEASE_TAG="$(curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/releases/latest" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
| jq -rc '.tag_name')"
if [ -n "${RELEASE_TAG-}" ] && [ "${RELEASE_TAG:?}" != 'null' ]; then
curl -fsS --proto '=https' --tlsv1.3 --globoff \
--url "https://api.github.com/repos/${GITHUB_REPOSITORY:?}/actions/workflows/main.yml/dispatches" \
--header "Authorization: Bearer ${GITHUB_PAT:?}" \
--header 'Accept: application/vnd.github.v3+json' \
--header 'Content-Type: application/json' \
--data "$(jq -rn --arg tag "${RELEASE_TAG:?}" '{"ref": $tag}')"
else
exit 1
fi

View File

@ -4,7 +4,7 @@ m4_changequote([[, ]])
## "build" stage ## "build" stage
################################################## ##################################################


FROM --platform=${BUILDPLATFORM} docker.io/ubuntu:22.04 AS build FROM --platform=${BUILDPLATFORM} docker.io/ubuntu:24.04 AS build


# Install system packages # Install system packages
RUN export DEBIAN_FRONTEND=noninteractive \ RUN export DEBIAN_FRONTEND=noninteractive \
@ -22,17 +22,17 @@ RUN export DEBIAN_FRONTEND=noninteractive \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*


# Download noVNC # Download noVNC
ARG NOVNC_VERSION=v1.4.0 ARG NOVNC_VERSION=v1.5.0
ARG NOVNC_TARBALL_URL=https://github.com/novnc/noVNC/archive/${NOVNC_VERSION}.tar.gz ARG NOVNC_TARBALL_URL=https://github.com/novnc/noVNC/archive/${NOVNC_VERSION}.tar.gz
ARG NOVNC_TARBALL_CHECKSUM=89b0354c94ad0b0c88092ec7a08e28086d3ed572f13660bac28d5470faaae9c1 ARG NOVNC_TARBALL_CHECKSUM=6a73e41f98388a5348b7902f54b02d177cb73b7e5eb0a7a0dcf688cc2c79b42a
RUN curl -Lo /tmp/novnc.tgz "${NOVNC_TARBALL_URL:?}" RUN curl -Lo /tmp/novnc.tgz "${NOVNC_TARBALL_URL:?}"
RUN printf '%s' "${NOVNC_TARBALL_CHECKSUM:?} /tmp/novnc.tgz" | sha256sum -c RUN printf '%s' "${NOVNC_TARBALL_CHECKSUM:?} /tmp/novnc.tgz" | sha256sum -c
RUN mkdir /tmp/novnc/ && tar -xzf /tmp/novnc.tgz --strip-components=1 -C /tmp/novnc/ RUN mkdir /tmp/novnc/ && tar -xzf /tmp/novnc.tgz --strip-components=1 -C /tmp/novnc/


# Download Websockify # Download Websockify
ARG WEBSOCKIFY_VERSION=v0.11.0 ARG WEBSOCKIFY_VERSION=v0.12.0
ARG WEBSOCKIFY_TARBALL_URL=https://github.com/novnc/websockify/archive/${WEBSOCKIFY_VERSION}.tar.gz ARG WEBSOCKIFY_TARBALL_URL=https://github.com/novnc/websockify/archive/${WEBSOCKIFY_VERSION}.tar.gz
ARG WEBSOCKIFY_TARBALL_CHECKSUM=628dd586e80865cd775cc402b96cf75f4daa647b0fefdc31366d08b7753016be ARG WEBSOCKIFY_TARBALL_CHECKSUM=37448ec992ef626f29558404cf6535592d02894ec1d5f0990a8c62621b39a967
RUN curl -Lo /tmp/websockify.tgz "${WEBSOCKIFY_TARBALL_URL:?}" RUN curl -Lo /tmp/websockify.tgz "${WEBSOCKIFY_TARBALL_URL:?}"
RUN printf '%s' "${WEBSOCKIFY_TARBALL_CHECKSUM:?} /tmp/websockify.tgz" | sha256sum -c RUN printf '%s' "${WEBSOCKIFY_TARBALL_CHECKSUM:?} /tmp/websockify.tgz" | sha256sum -c
RUN mkdir /tmp/websockify/ && tar -xzf /tmp/websockify.tgz --strip-components=1 -C /tmp/websockify/ RUN mkdir /tmp/websockify/ && tar -xzf /tmp/websockify.tgz --strip-components=1 -C /tmp/websockify/
@ -59,14 +59,14 @@ RUN curl -Lo /tmp/samba.exe "${SAMBA_EXE_URL:?}"
RUN printf '%s' "${SAMBA_EXE_CHECKSUM:?} /tmp/samba.exe" | sha256sum -c RUN printf '%s' "${SAMBA_EXE_CHECKSUM:?} /tmp/samba.exe" | sha256sum -c


# Download BusyBox # Download BusyBox
ARG BUSYBOX_EXE_URL=https://frippery.org/files/busybox/busybox-w32-FRP-5301-gda71f7c57.tgz ARG BUSYBOX_EXE_URL=https://frippery.org/files/busybox/busybox-w32-FRP-5398-g89ae34445.exe
ARG BUSYBOX_EXE_CHECKSUM=ebdea8aa03d9d457075f3ff5ce4dc04239cd4b9ba6439bb701f285233c960923 ARG BUSYBOX_EXE_CHECKSUM=e311f576b6222a6a30fc892c4be13bd42387bcca65563e7ffff7004b9460b86c
RUN curl -Lo /tmp/busybox.exe "${BUSYBOX_EXE_URL:?}" RUN curl -Lo /tmp/busybox.exe "${BUSYBOX_EXE_URL:?}"
RUN printf '%s' "${BUSYBOX_EXE_CHECKSUM:?} /tmp/busybox.exe" | sha256sum -c RUN printf '%s' "${BUSYBOX_EXE_CHECKSUM:?} /tmp/busybox.exe" | sha256sum -c


# Download and install ReactOS # Download and install ReactOS
ARG REACTOS_ISO_URL=https://downloads.sourceforge.net/reactos/ReactOS-0.4.14-release-104-g5f5ed42-iso.zip ARG REACTOS_ISO_URL=https://downloads.sourceforge.net/reactos/ReactOS-0.4.14-release-119-gce0b4ff-iso.zip
ARG REACTOS_ISO_CHECKSUM=6bb006fca64c12d2c34693ea6e3b072148e1d83d4970ec0938fadfbc3c877862 ARG REACTOS_ISO_CHECKSUM=2937a619c9988d9c697930160e378d21048069c74e224b5c5ff6be470784b7d8
RUN curl -Lo /tmp/reactos.zip "${REACTOS_ISO_URL:?}" RUN curl -Lo /tmp/reactos.zip "${REACTOS_ISO_URL:?}"
RUN printf '%s' "${REACTOS_ISO_CHECKSUM:?} /tmp/reactos.zip" | sha256sum -c RUN printf '%s' "${REACTOS_ISO_CHECKSUM:?} /tmp/reactos.zip" | sha256sum -c
RUN 7z e /tmp/reactos.zip -so '*.iso' > /tmp/reactos.iso \ RUN 7z e /tmp/reactos.zip -so '*.iso' > /tmp/reactos.iso \
@ -92,8 +92,7 @@ RUN mkisofs -no-emul-boot -iso-level 4 -eltorito-boot loader/isoboot.bin -o /tmp
## "base" stage ## "base" stage
################################################## ##################################################


m4_ifdef([[CROSS_ARCH]], [[FROM docker.io/CROSS_ARCH/ubuntu:22.04]], [[FROM docker.io/ubuntu:22.04]]) AS base m4_ifdef([[CROSS_ARCH]], [[FROM docker.io/CROSS_ARCH/ubuntu:24.04]], [[FROM docker.io/ubuntu:24.04]]) AS base
m4_ifdef([[CROSS_QEMU]], [[COPY --from=docker.io/hectorm/qemu-user-static:latest CROSS_QEMU CROSS_QEMU]])


# Install system packages # Install system packages
RUN export DEBIAN_FRONTEND=noninteractive \ RUN export DEBIAN_FRONTEND=noninteractive \

View File

@ -70,7 +70,6 @@ $(IMAGE_AMD64_DOCKERFILE): $(DOCKERFILE_TEMPLATE)
'$(M4)' \ '$(M4)' \
--prefix-builtins \ --prefix-builtins \
--define=CROSS_ARCH=amd64 \ --define=CROSS_ARCH=amd64 \
--define=CROSS_QEMU=/usr/bin/qemu-x86_64-static \
'$(DOCKERFILE_TEMPLATE)' > '$@' '$(DOCKERFILE_TEMPLATE)' > '$@'
'$(DOCKER)' build $(IMAGE_BUILD_OPTS) \ '$(DOCKER)' build $(IMAGE_BUILD_OPTS) \
--tag '$(IMAGE_NAME):$(IMAGE_VERSION)-amd64' \ --tag '$(IMAGE_NAME):$(IMAGE_VERSION)-amd64' \
@ -86,7 +85,6 @@ $(IMAGE_ARM64V8_DOCKERFILE): $(DOCKERFILE_TEMPLATE)
'$(M4)' \ '$(M4)' \
--prefix-builtins \ --prefix-builtins \
--define=CROSS_ARCH=arm64v8 \ --define=CROSS_ARCH=arm64v8 \
--define=CROSS_QEMU=/usr/bin/qemu-aarch64-static \
'$(DOCKERFILE_TEMPLATE)' > '$@' '$(DOCKERFILE_TEMPLATE)' > '$@'
'$(DOCKER)' build $(IMAGE_BUILD_OPTS) \ '$(DOCKER)' build $(IMAGE_BUILD_OPTS) \
--tag '$(IMAGE_NAME):$(IMAGE_VERSION)-arm64v8' \ --tag '$(IMAGE_NAME):$(IMAGE_VERSION)-arm64v8' \

View File

@ -9,9 +9,13 @@ docker run --detach \
--device /dev/kvm \ --device /dev/kvm \
--publish 127.0.0.1:5900:5900/tcp \ --publish 127.0.0.1:5900:5900/tcp \
--publish 127.0.0.1:6080:6080/tcp \ --publish 127.0.0.1:6080:6080/tcp \
--mount type=volume,src=qemu-reactos-disk,dst=/var/lib/qemu/disk/ \
docker.io/hectorm/qemu-reactos:latest docker.io/hectorm/qemu-reactos:latest
``` ```


> [!NOTE]
> The `--device /dev/kvm` option can only be used on Linux hosts, it can be removed on Windows and macOS hosts at a significant performance penalty.

The instance can be accessed from: The instance can be accessed from:
* **VNC** (`5900/TCP`), without password. * **VNC** (`5900/TCP`), without password.
* **noVNC** (`6080/TCP`), http://127.0.0.1:6080/vnc.html * **noVNC** (`6080/TCP`), http://127.0.0.1:6080/vnc.html

View File

@ -2,6 +2,10 @@


set -eu set -eu


if [ ! -d /run/samba/ ]; then
install -m 755 -o root -g root -d /run/samba/
fi

cd /run/samba/ cd /run/samba/
exec 2>&1 exec 2>&1
exec /usr/sbin/smbd --foreground --debug-stdout --debuglevel=3 exec /usr/sbin/smbd --foreground --debug-stdout --debuglevel=3