Skip to content

v1.4.1 - Docker Hotfix

Choose a tag to compare

@bakerboy448 bakerboy448 released this 31 Oct 01:04
· 11 commits to main since this release

Docker Hotfix Release

Fixes

  • Fixed s6 run script to pass --config /config/config.json to application
  • Fixed s6 service symlink (was causing "Exec format error")
  • Init script now validates config file OR environment variables (not requiring both)
  • Added troubleshooting tools (procps, htop, vim-tiny)
  • Improved healthcheck to verify Python process is running

Documentation

  • Updated README with correct Docker deployment examples
  • Added Docker Compose example configurations
  • Documented /config mount structure

Docker Images

  • ghcr.io/bakerboy448/redditmodlog:v1.4.1
  • ghcr.io/bakerboy448/redditmodlog:latest

Deployment

services:
  redditmodlog:
    image: ghcr.io/bakerboy448/redditmodlog:latest
    environment:
      - PUID=1000
      - PGID=1000
    volumes:
      - ./config:/config

Recommended: Use this version for all new Docker deployments.