update .gitignore, modify Docker Hub credentials in workflow, and add usage instructions to README
Some checks failed
🏗️✨ Build Workflow / 🖥️ 🔨 Build (push) Failing after 31s

This commit is contained in:
2025-07-29 10:48:23 -04:00
parent 72325591b7
commit fac9dc0b92
3 changed files with 11 additions and 4 deletions

View File

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

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.idea/
data/

6
README.md Normal file
View File

@@ -0,0 +1,6 @@
```shell
docker run --rm \
-v $(pwd)/data:/data \
-p 8000:8000 \
scr.siteworxpro.com/gun-manager:v1.0.0 -database /data/gun_inventory.sqlite
```