From fac9dc0b927d5b3088c1c9e5151b30b2e4632d53 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Tue, 29 Jul 2025 10:48:23 -0400 Subject: [PATCH] update .gitignore, modify Docker Hub credentials in workflow, and add usage instructions to README --- .gitea/workflows/build.yml | 6 +++--- .gitignore | 3 ++- README.md | 6 ++++++ 3 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 README.md diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 8a0ba15..1175092 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -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 }} \ No newline at end of file + tags: scr.siteworxpro.com/gun-manager:${{ gitea.ref_name }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 62c8935..69b5ef2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.idea/ \ No newline at end of file +.idea/ +data/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..a0f7fad --- /dev/null +++ b/README.md @@ -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 +``` \ No newline at end of file