Migrate all docker-compose service configurations from legacy GitLab instance to homelab repository for consolidation and version control. Services migrated (6): - bytestash: Code snippet management - filebrowser: Web-based file browser - gitlab: QoL scripts for NPM cert sync - paperless-ngx: Document management with OCR - portainer: Docker management UI - speedtest-tracker: Internet speed test tracker Changes: - Add services/ directory with complete configurations - Update .gitignore with Docker Compose exclusions - Create comprehensive services/README.md documentation - Document migration process in CLAUDE_STATUS.md Migration details: - Source: https://vulcan.apophisnetworking.net/jramos/homelab.git - Files migrated: 10 files (6 compose + 3 utilities + 1 README) - Total size: 84 KB - Lines added: 836 Security notes: - .env files excluded from git - Hardcoded secrets identified in documentation - Review and update secrets before deployment Related: GitLab VM 101 decommissioning preparation 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
758 B
YAML
25 lines
758 B
YAML
services:
|
|
bytestash:
|
|
image: "ghcr.io/jordan-dalby/bytestash:latest"
|
|
restart: always
|
|
volumes:
|
|
- /home/jramos/docker/bytestash/data:/data/snippets
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
# See https://github.com/jordan-dalby/ByteStash/wiki/FAQ#environment-variables
|
|
BASE_PATH: ""
|
|
JWT_SECRET: your-secret
|
|
TOKEN_EXPIRY: 24h
|
|
ALLOW_NEW_ACCOUNTS: "true"
|
|
DEBUG: "true"
|
|
DISABLE_ACCOUNTS: "false"
|
|
DISABLE_INTERNAL_ACCOUNTS: "false"
|
|
|
|
# See https://github.com/jordan-dalby/ByteStash/wiki/Single-Sign%E2%80%90on-Setup for more info
|
|
OIDC_ENABLED: "false"
|
|
OIDC_DISPLAY_NAME: ""
|
|
OIDC_ISSUER_URL: ""
|
|
OIDC_CLIENT_ID: ""
|
|
OIDC_CLIENT_SECRET: ""
|
|
OIDC_SCOPES: "" |