update readme and actions

This commit is contained in:
2026-02-10 08:21:51 +01:00
parent b56a9b8aa4
commit 6f5d6215af
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
name: 'Build docker container'
on:
push:
tags:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ GITHUB_WORKSPACE }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Fetch
run: |
echo "Installing fetch"
apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_24.x | bash
npm install node-fetch
- name: Login to DockerHub container registry
uses: https://github.com/docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v5
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
repository: davidquinonescl/hyperion-docker
- name: Build and push
uses: https://github.com/docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@@ -27,6 +27,8 @@ version: '3.3'
services: services:
hyperionng: hyperionng:
image: git.claeyscloud.com/david/hyperion-docker image: git.claeyscloud.com/david/hyperion-docker
#image: ghcr.io/davidclaeysquinones/hyperion-docker:latest
#image: davidquinonescl/hyperion-docker
volumes: volumes:
- /docker/hyperion:/config - /docker/hyperion:/config
ports: ports: