Files
homelab-optimized/docs/services/individual/signer.md
Gitea Mirror Bot 9e0ef0cc6a
Some checks failed
Documentation / Deploy to GitHub Pages (push) Has been cancelled
Documentation / Build Docusaurus (push) Has been cancelled
Sanitized mirror from private repository - 2026-04-06 03:11:43 UTC
2026-04-06 03:11:43 +00:00

3.7 KiB

Signer

🟢 Other Service

📋 Service Overview

Property Value
Service Name signer
Host anubis
Category Other
Difficulty 🟢
Docker Image ghcr.io/pablouser1/signtok:master
Compose File anubis/proxitok.yml
Directory anubis

🎯 Purpose

signer is a specialized service that provides specific functionality for the homelab infrastructure.

🚀 Quick Start

Prerequisites

  • Docker and Docker Compose installed
  • Basic understanding of REDACTED_APP_PASSWORD
  • Access to the host system (anubis)

Deployment

# Navigate to service directory
cd anubis

# Start the service
docker-compose up -d

# Check service status
docker-compose ps

# View logs
docker-compose logs -f signer

🔧 Configuration

Docker Compose Configuration

container_name: ProxiTok-SIGNER
cpu_shares: 768
healthcheck:
  test: wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1
hostname: proxitok-signer
image: ghcr.io/pablouser1/signtok:master
mem_limit: 512m
read_only: true
restart: on-failure:5
security_opt:
- no-new-privileges:true
user: 1000:1000

Environment Variables

No environment variables configured.

Port Mappings

No ports exposed.

Volume Mappings

No volumes mounted.

🌐 Access Information

This service does not expose any web interfaces.

🔒 Security Considerations

  • Security options configured
  • Non-root user configured
  • Read-only root filesystem

📊 Resource Requirements

No resource limits configured

  • Minimum RAM: 512MB
  • Recommended RAM: 1GB+
  • CPU: 1 core minimum
  • Storage: Varies by usage

Resource Monitoring

Monitor resource usage with:

docker stats

🔍 Health Monitoring

Health check configured Test Command: wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1

Manual Health Checks

# Check container health
docker inspect --format='{{.State.Health.Status}}' CONTAINER_NAME

# View health check logs
docker inspect --format='{{range .State.Health.Log}}{{.Output}}{{end}}' CONTAINER_NAME

🚨 Troubleshooting

Common Issues

Service won't start

  • Check Docker logs: docker-compose logs service-name
  • Verify port availability: netstat -tulpn | grep PORT
  • Check file permissions on mounted volumes

Can't access web interface

  • Verify service is running: docker-compose ps
  • Check firewall settings
  • Confirm correct port mapping

Performance issues

  • Monitor resource usage: docker stats
  • Check available disk space: df -h
  • Review service logs for errors

Useful Commands

# Check service status
docker-compose ps

# View real-time logs
docker-compose logs -f signer

# Restart service
docker-compose restart signer

# Update service
docker-compose pull signer
docker-compose up -d signer

# Access service shell
docker-compose exec signer /bin/bash
# or
docker-compose exec signer /bin/sh

📚 Additional Resources

  • Official Documentation: Check the official docs for signer
  • Docker Hub: ghcr.io/pablouser1/signtok:master
  • Community Forums: Search for community discussions and solutions
  • GitHub Issues: Check the project's GitHub for known issues

Other services in the other category on anubis


This documentation is auto-generated from the Docker Compose configuration. For the most up-to-date information, refer to the official documentation and the actual compose file.

Last Updated: 2025-11-17
Configuration Source: anubis/proxitok.yml