Compare commits

...

10 Commits

Author SHA1 Message Date
8d0322831f .gitea/workflows/release.yml aktualisiert
All checks were successful
Build apc image / Build-and-release-image (push) Successful in 1m14s
2025-04-01 12:11:43 +02:00
603cf4a45b Use secrets and security scan for workflow. 2025-03-20 12:51:27 +01:00
5df1851ae2 Use gitea package registry. 2025-03-18 10:47:49 +01:00
7f3b60e506 Merge pull request 'Add readme to use build badges.' (#1) from badges into master
Reviewed-on: https://cs-git.ddnss.de/home/apc-container/pulls/1
2023-09-13 13:46:32 +02:00
fbc5be0f36 Cleanup and compress image. 2022-10-04 04:53:09 +02:00
746d630da0 Add readme to use build badges. 2022-08-23 10:53:07 +02:00
Christian Steinle
724abc529f Change entrypoint. 2022-07-11 08:23:32 +02:00
Christian Steinle
5b8259df1d Change entrypoint. 2022-07-11 08:17:58 +02:00
Christian Steinle
3a5b050f01 Create entrypoint.sh. 2022-07-11 08:09:50 +02:00
925f433dd5 Test command change because metrics endpoint is not available. 2022-07-10 09:39:01 +02:00
5 changed files with 92 additions and 22 deletions

View File

@@ -1,20 +0,0 @@
kind: pipeline
name: default
steps:
- name: build container
image: plugins/docker
settings:
dockerfile: Dockerfile
username:
from_secret: registry-username
password:
from_secret: registry-password
registry: https://cs-registry.ddnss.de
repo: cs-registry.ddnss.de/${DRONE_REPO_OWNER}/apc
cache_from: cs-registry.ddnss.de/${DRONE_REPO_OWNER}/apc:latest
dry_run: false
purge: false
insecure: false
tags:
- ${DRONE_TAG}

View File

@@ -0,0 +1,78 @@
name: Build apc image
on:
push:
branches: [ master ]
schedule:
# Run every Sunday at midnight
- cron: '0 0 * * 0'
env:
IMAGE: /home/apc
jobs:
Build-and-release-image:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USER }}
password: ${{ vars.DOCKERHUB_TOKEN }}
- name: Log into CS registry
uses: docker/login-action@v3
with:
registry: ${{ vars.CS_REGISTRY_URL }}
username: ${{ vars.CS_REGISTRY_USER }}
password: ${{ vars.CS_REGISTRY_PASS }}
- name: Log into local registry
uses: docker/login-action@v3
with:
registry: ${{ vars.LOCAL_REGISTRY_URL }}
username: ${{ vars.LOCAL_REGISTRY_USER }}
password: ${{ vars.LOCAL_REGISTRY_PASS }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.REGISTRY_URL }}${{ env.IMAGE }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: ''
with:
tags: ${{ vars.LOCAL_REGISTRY_URL }}${{ env.IMAGE }}:latest
push: true
- name: Scan image
uses: anchore/scan-action@v6
id: scan
with:
image: ${{ vars.LOCAL_REGISTRY_URL }}${{ env.IMAGE }}:latest
fail-build: false
output-format: table
severity-cutoff: critical
registry-username: ${{ vars.LOCAL_REGISTRY_USER }}
registry-password: ${{ vars.LOCAL_REGISTRY_PASS }}
grype-version: 'v0.90.0'
- name: Inspect file
run: cat ${{ steps.scan.outputs.table }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: scan-result
path: ${{ steps.scan.outputs.table }}

View File

@@ -1,4 +1,5 @@
FROM golang:alpine AS build
MAINTAINER chris
RUN apk add git --no-cache && \
git clone https://github.com/mdlayher/apcupsd_exporter /tmp/build && \
@@ -6,9 +7,13 @@ RUN apk add git --no-cache && \
go build -o /go/bin/apcupsd_exporter /tmp/build/cmd/apcupsd_exporter/main.go
FROM alpine:latest
RUN apk update && apk upgrade && apk add --no-cache libusb apcupsd
COPY apc-deamon.conf /etc/apcupsd/apcupsd.conf
COPY entrypoint.sh /sbin/entrypoint.sh
COPY --from=build /go/bin/apcupsd_exporter /sbin/apcupsd_exporter
EXPOSE 9162 3551/tcp 3551/udp
CMD /sbin/apcupsd_exporter -apcupsd.addr localhost:3551 &
ENTRYPOINT /sbin/apcupsd -b
ENTRYPOINT ["sh", "/sbin/entrypoint.sh"]

1
Readme.md Normal file
View File

@@ -0,0 +1 @@
[![Build Status](https://drone.fam-steinle.de/api/badges/home/apc-container/status.svg)](https://drone.fam-steinle.de/home/apc-container)

6
entrypoint.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
/sbin/apcupsd_exporter -apcupsd.addr localhost:3551 &
/sbin/apcupsd -b