7 Commits

Author SHA1 Message Date
matthias a697e7407f Merge pull request 'chore(deps): update module golang.org/x/crypto to v0.46.0' (#17) from renovate/golang.org-x-crypto-0.x into main
Build And Test / build (push) Successful in 3m13s
Build And Test / Build and Publish Docker Image (push) Failing after 2m46s
Reviewed-on: #17
2025-12-13 08:31:32 +00:00
renovate-bot 5b95e66a20 chore(deps): update module golang.org/x/crypto to v0.46.0 2025-12-08 21:04:45 +00:00
Matthias Hinrichs 2061bb29c0 fix: aktualisiere das Docker-Image auf v0.1.3 und passe die Verzeichnispfade im Dockerfile und docker-compose.yml an
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 39s
2025-11-23 01:22:38 +01:00
Matthias Hinrichs fe774f8009 fix: aktualisiere das Docker-Image auf v0.1.2 und entferne den ls-Befehl aus dem Dockerfile
Build And Test / build (push) Successful in 1m16s
Build And Test / Build and Publish Docker Image (push) Successful in 41s
2025-11-23 01:12:42 +01:00
Matthias Hinrichs 2021399a10 fix: füge ls-Befehl zur Überprüfung des Verzeichnisinhalts hinzu
Build And Test / build (push) Successful in 55s
Build And Test / Build and Publish Docker Image (push) Successful in 1m1s
2025-11-23 01:08:54 +01:00
Matthias Hinrichs 2cefdaa85d fix: füge ls-Befehl zur Ausgabe der Verzeichnisinhalte hinzu
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 39s
2025-11-23 00:59:56 +01:00
Matthias Hinrichs db0cde6497 fix: aktualisiere das Docker-Image auf v0.1.1
Build And Test / build (push) Successful in 55s
Build And Test / Build and Publish Docker Image (push) Successful in 38s
2025-11-23 00:50:13 +01:00
5 changed files with 24 additions and 10 deletions
+2
View File
@@ -61,6 +61,8 @@ jobs:
username = "${{ secrets.DOCKER_USERNAME }}"
password = "${{ secrets.DOCKER_PASSWORD }}"
- run: ls -lha
- name: Build and Push Docker latest Image
if: gitea.ref == 'refs/heads/main'
uses: docker/build-push-action@v6
+8 -4
View File
@@ -1,8 +1,10 @@
FROM docker.hnrx.net/alpine:latest
RUN mkdir /config
# Create application directory
RUN mkdir -p /app/config
WORKDIR /root/
# Set working directory
WORKDIR /app/
# Copy the compiled binary from the builder stage
COPY manage-servers .
@@ -10,8 +12,10 @@ COPY manage-servers .
# Copy the index.html file for the web server
COPY index.html .
# Copy the servers.json file
# COPY servers.json .
RUN ls -la /app/
# Make the binary executable
RUN chmod +x ./manage-servers
# Expose the port the web server listens on
EXPOSE 8080
+2 -2
View File
@@ -2,7 +2,7 @@ version: '3.8'
services:
manage-servers:
image: git.hnrx.net/hnrx/manage-servers:v0.1.0
image: git.hnrx.net/hnrx/manage-servers:v0.1.3
container_name: manage-servers
restart: unless-stopped
labels:
@@ -14,7 +14,7 @@ services:
- "traefik.http.routers.manage-servers.tls.certresolver=cloudflare"
- "traefik.http.services.manage-servers.loadbalancer.server.port=8080"
volumes:
- /volume1/docker-data/manage-servers:/config
- /volume1/docker-data/manage-servers:/app/config
networks:
- my-container-macvlan-200
+6 -4
View File
@@ -2,7 +2,10 @@ module manage-servers
go 1.24.6
require golang.org/x/crypto v0.45.0
require (
github.com/spf13/viper v1.21.0
golang.org/x/crypto v0.46.0
)
require (
github.com/fsnotify/fsnotify v1.9.0 // indirect
@@ -13,9 +16,8 @@ require (
github.com/spf13/afero v1.15.0 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/spf13/viper v1.21.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
)
+6
View File
@@ -22,10 +22,16 @@ go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
golang.org/x/crypto v0.45.0 h1:jMBrvKuj23MTlT0bQEOBcAE0mjg8mK9RXFhRH6nyF3Q=
golang.org/x/crypto v0.45.0/go.mod h1:XTGrrkGJve7CYK7J8PEww4aY7gM3qMCElcJQ8n8JdX4=
golang.org/x/crypto v0.46.0 h1:cKRW/pmt1pKAfetfu+RCEvjvZkA9RimPbh7bhFjGVBU=
golang.org/x/crypto v0.46.0/go.mod h1:Evb/oLKmMraqjZ2iQTwDwvCtJkczlDuTmdJXoZVzqU0=
golang.org/x/sys v0.38.0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc=
golang.org/x/sys v0.38.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk=
golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
golang.org/x/term v0.37.0 h1:8EGAD0qCmHYZg6J17DvsMy9/wJ7/D/4pV/wfnld5lTU=
golang.org/x/term v0.37.0/go.mod h1:5pB4lxRNYYVZuTLmy8oR2BH8dflOR+IbTYFD8fi3254=
golang.org/x/text v0.31.0 h1:aC8ghyu4JhP8VojJ2lEHBnochRno1sgL6nEi9WGFGMM=
golang.org/x/text v0.31.0/go.mod h1:tKRAlv61yKIjGGHX/4tP1LTbc13YSec1pxVEWXzfoeM=
golang.org/x/text v0.32.0 h1:ZD01bjUt1FQ9WJ0ClOL5vxgxOI/sVCNgX1YtKwcY0mU=
golang.org/x/text v0.32.0/go.mod h1:o/rUWzghvpD5TXrTIBuJU77MTaN0ljMWE47kxGJQ7jY=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=