3 Commits

Author SHA1 Message Date
d3059d3481 update Docker Hub credentials and image version in configuration files
All checks were successful
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Successful in 17m16s
2025-07-29 16:08:51 -04:00
c0fd8d6796 version
Some checks failed
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Has been cancelled
2025-07-29 13:45:04 -04:00
a7fef89dda cors
All checks were successful
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Successful in 20m24s
2025-07-29 13:11:12 -04:00
5 changed files with 9 additions and 8 deletions

View File

@@ -25,9 +25,8 @@ jobs:
- name: 🔑 🔐 Login to Docker Hub
uses: docker/login-action@v3
with:
registry: scr.siteworxpro.com
username: ${{ secrets.SITEWORX_USERNAME }}
password: ${{ secrets.SITEWORX_PASSWORD }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: 🏗️ 🔧 Set up Docker Buildx
uses: docker/setup-buildx-action@v3
@@ -41,4 +40,4 @@ jobs:
platforms: linux/arm64,linux/amd64
context: .
dockerfile: Dockerfile
tags: scr.siteworxpro.com/gun-manager:${{ gitea.ref_name }}
tags: siteworxpro/gun-manager:${{ gitea.ref_name }}

View File

@@ -1,6 +1,6 @@
FROM node:22.14.0 AS frontend
ENV VITE_API="https://localhost"
ENV VITE_API=""
WORKDIR /frontend
ADD frontend/ ./

Submodule backend updated: 3c6750ab13...42bd95d804

View File

@@ -19,7 +19,7 @@ services:
- "--entrypoints.web.http.redirections.entrypoint.permanent=true"
api:
image: scr.siteworxpro.com/gun-manager:v0.0.3
image: scr.siteworxpro.com/gun-manager:v1.0.0
container_name: gun-manager
labels:
- "traefik.enable=true"
@@ -32,3 +32,5 @@ services:
command:
- "-database"
- "./data/gun_inventory.sqlite"
environment:
CORS_ORIGINS: "https://localhost"