Files
nicotine-less/.gitea/workflows/mirror-alpine.yml
Claude ba48d1c8d1
Some checks failed
Mirror Alpine Image / mirror (push) Has been cancelled
Build and Push Docker Image / create-manifest (push) Has been cancelled
Build and Push Docker Image / build (linux/arm64, linux-arm64) (push) Has been cancelled
Build and Push Docker Image / check-version (push) Has been cancelled
Build and Push Docker Image / build (linux/amd64, linux-amd64) (push) Has been cancelled
Initial commit: Nicotine-Less Docker container
A containerized Nicotine+ (Soulseek client) with noVNC web interface.

Features:
- Web-based VNC access with dynamic screen resizing
- Firefox ESR browser included for port testing
- Multi-architecture support (amd64, arm64)
- Automated builds when Nicotine+ releases new versions
- Mirrored Alpine base image to avoid Docker Hub rate limiting

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-20 14:28:02 +02:00

30 lines
800 B
YAML

name: Mirror Alpine Image
on:
schedule:
- cron: '0 3 * * 0' # Weekly on Sunday at 3 AM
workflow_dispatch:
jobs:
mirror:
runs-on: linux-amd64
container:
image: git.nicola.sh/public/alpine:latest
steps:
- name: Install Docker CLI
run: |
apk add --no-cache docker-cli
- name: Pull Alpine from Docker Hub
run: |
docker pull alpine:latest
- name: Login to Gitea Container Registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login git.nicola.sh -u "${{ secrets.REGISTRY_USERNAME }}" --password-stdin
- name: Tag and push to Gitea registry
run: |
docker tag alpine:latest git.nicola.sh/public/alpine:latest
docker push git.nicola.sh/public/alpine:latest