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>
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
services:
|
|
broker:
|
|
image: docker.io/library/redis:8
|
|
restart: unless-stopped
|
|
volumes:
|
|
- redisdata:/data
|
|
db:
|
|
image: docker.io/library/postgres:17
|
|
restart: unless-stopped
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_DB: paperless
|
|
POSTGRES_USER: paperless
|
|
POSTGRES_PASSWORD: paperless
|
|
PAPERLESS_URL: https://atlas.apophisnetworking.net
|
|
webserver:
|
|
image: ghcr.io/paperless-ngx/paperless-ngx:latest
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- db
|
|
- broker
|
|
- gotenberg
|
|
- tika
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- data:/usr/src/paperless/data
|
|
- media:/usr/src/paperless/media
|
|
- ./export:/usr/src/paperless/export
|
|
- /home/jramos/paperless-ngx/consume:/usr/src/paperless/consume
|
|
# env_file: docker-compose.env uncomment if deploying from CLI. ENV variables entered directly in portainer
|
|
environment:
|
|
PAPERLESS_REDIS: redis://broker:6379
|
|
PAPERLESS_DBHOST: db
|
|
PAPERLESS_TIKA_ENABLED: 1
|
|
PAPERLESS_TIKA_GOTENBERG_ENDPOINT: http://gotenberg:3000
|
|
PAPERLESS_TIKA_ENDPOINT: http://tika:9998
|
|
# PAPERLESS_URL: <enter domain name> # Required if not using IP:PORT to access
|
|
gotenberg:
|
|
image: docker.io/gotenberg/gotenberg:8.20
|
|
restart: unless-stopped
|
|
# The gotenberg chromium route is used to convert .eml files. We do not
|
|
# want to allow external content like tracking pixels or even javascript.
|
|
command:
|
|
- "gotenberg"
|
|
- "--chromium-disable-javascript=true"
|
|
- "--chromium-allow-list=file:///tmp/.*"
|
|
tika:
|
|
image: docker.io/apache/tika:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
data:
|
|
media:
|
|
pgdata:
|
|
redisdata:
|