update to python 3.13

This commit is contained in:
2025-09-16 15:38:51 -04:00
parent bc63d6a5a4
commit 339d023b85
5 changed files with 49 additions and 45 deletions
+18 -8
View File
@@ -36,13 +36,13 @@ Add these secrets to your Gitea repository settings:
## What Gets Published
### Main Branch (Production)
- `yourusername/nfoguard:latest`
- `yourusername/nfoguard:v1.5.2` (version from VERSION file)
- `yourusername/nfoguard:sha-abc123` (git commit SHA)
- `sbcrumb/nfoguard:latest`
- `sbcrumb/nfoguard:v1.5.2` (version from VERSION file)
- `sbcrumb/nfoguard:sha-abc123` (git commit SHA)
### Dev Branch
- `yourusername/nfoguard:dev`
- `yourusername/nfoguard:dev-sha-abc123`
- `sbcrumb/nfoguard:dev`
- `sbcrumb/nfoguard:dev-sha-abc123`
## Usage Examples
@@ -53,10 +53,10 @@ Once set up, users can pull from either registry:
docker pull 192.168.253.221:3000/jskala/nfoguard:latest
# From Docker Hub (public access)
docker pull yourusername/nfoguard:latest
docker pull sbcrumb/nfoguard:latest
# Dev versions
docker pull yourusername/nfoguard:dev
docker pull sbcrumb/nfoguard:dev
```
## Testing the Setup
@@ -76,4 +76,14 @@ Watch the Actions tab in Gitea to see both registries being pushed to successful
- **Local**: Ultra-fast local builds and deployment
- **Public**: Anyone can use `docker pull yourusername/nfoguard:latest`
- **Redundancy**: Multiple image sources
- **Versioning**: Proper semantic versioning across both registries
- **Versioning**: Proper semantic versioning across both registries
## Quick Usage
```bash
# Pull the latest stable release
docker pull sbcrumb/nfoguard:latest
# Pull development version
docker pull sbcrumb/nfoguard:dev
```