9 Commits

Author SHA1 Message Date
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
Matthias Hinrichs 89e353a135 fix: ändere das Basis-Image auf docker.hnrx.net/alpine:latest
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 40s
2025-11-23 00:38:32 +01:00
Matthias Hinrichs 1c60201ba8 fix: ändere das Basis-Image zurück auf alpine:latest
Build And Test / build (push) Successful in 50s
Build And Test / Build and Publish Docker Image (push) Failing after 34s
2025-11-22 03:36:14 +01:00
Matthias Hinrichs ea183a08b5 fix: aktualisiere das Docker-Image auf v0.1.0
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 38s
2025-11-22 03:19:04 +01:00
Matthias Hinrichs eca6853b39 fix: korrigiere die Paketnamen für actions/artifact in renovate.json
Build And Test / build (push) Successful in 1m8s
Build And Test / Build and Publish Docker Image (push) Successful in 43s
2025-11-22 03:15:02 +01:00
4 changed files with 15 additions and 9 deletions
+2
View File
@@ -61,6 +61,8 @@ jobs:
username = "${{ secrets.DOCKER_USERNAME }}" username = "${{ secrets.DOCKER_USERNAME }}"
password = "${{ secrets.DOCKER_PASSWORD }}" password = "${{ secrets.DOCKER_PASSWORD }}"
- run: ls -lha
- name: Build and Push Docker latest Image - name: Build and Push Docker latest Image
if: gitea.ref == 'refs/heads/main' if: gitea.ref == 'refs/heads/main'
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
+9 -5
View File
@@ -1,8 +1,10 @@
FROM mirror.gcr.io/alpine:latest 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 the compiled binary from the builder stage
COPY manage-servers . COPY manage-servers .
@@ -10,8 +12,10 @@ COPY manage-servers .
# Copy the index.html file for the web server # Copy the index.html file for the web server
COPY index.html . COPY index.html .
# Copy the servers.json file RUN ls -la /app/
# COPY servers.json .
# Make the binary executable
RUN chmod +x ./manage-servers
# Expose the port the web server listens on # Expose the port the web server listens on
EXPOSE 8080 EXPOSE 8080
+2 -2
View File
@@ -2,7 +2,7 @@ version: '3.8'
services: services:
manage-servers: manage-servers:
image: git.hnrx.net/hnrx/manage-servers:v0.0.2 image: git.hnrx.net/hnrx/manage-servers:v0.1.3
container_name: manage-servers container_name: manage-servers
restart: unless-stopped restart: unless-stopped
labels: labels:
@@ -14,7 +14,7 @@ services:
- "traefik.http.routers.manage-servers.tls.certresolver=cloudflare" - "traefik.http.routers.manage-servers.tls.certresolver=cloudflare"
- "traefik.http.services.manage-servers.loadbalancer.server.port=8080" - "traefik.http.services.manage-servers.loadbalancer.server.port=8080"
volumes: volumes:
- /volume1/docker-data/manage-servers:/config - /volume1/docker-data/manage-servers:/app/config
networks: networks:
- my-container-macvlan-200 - my-container-macvlan-200
+2 -2
View File
@@ -4,8 +4,8 @@
{ {
"packageNames": [ "packageNames": [
"@actions/artifact", "@actions/artifact",
"upload-artifact", "actions/upload-artifact",
"download-artifact" "actions/download-artifact"
], ],
"enabled": false "enabled": false
} }