Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:

env:
REGISTRY: ghcr.io
IMAGE_NAME: bakerboy448/redditmodlog
IMAGE_NAME: ${{ github.repository_owner }}/redditmodlog

jobs:
build:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
labels: |
org.opencontainers.image.title=Reddit ModLog Wiki Publisher
org.opencontainers.image.description=Automated Reddit moderation log publisher to wiki pages
org.opencontainers.image.vendor=bakerboy448
org.opencontainers.image.vendor=baker-scripts
org.opencontainers.image.licenses=GPL-3.0

- name: Build and push Docker image
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ FROM python:3.11-slim
# OCI Labels
LABEL org.opencontainers.image.title="Reddit ModLog Wiki Publisher" \
org.opencontainers.image.description="Automated Reddit moderation log publisher to wiki pages" \
org.opencontainers.image.authors="bakerboy448" \
org.opencontainers.image.source="https://github.com/bakerboy448/RedditModLog" \
org.opencontainers.image.documentation="https://github.com/bakerboy448/RedditModLog/blob/main/README.md" \
org.opencontainers.image.authors="baker-scripts" \
org.opencontainers.image.source="https://github.com/baker-scripts/RedditModLog" \
org.opencontainers.image.documentation="https://github.com/baker-scripts/RedditModLog/blob/main/README.md" \
org.opencontainers.image.licenses="GPL-3.0" \
org.opencontainers.image.vendor="bakerboy448" \
org.opencontainers.image.vendor="baker-scripts" \
org.opencontainers.image.base.name="python:3.11-slim"

# Install runtime dependencies and s6-overlay for user management
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ docker run -d \
-e PUID=1000 \
-e PGID=1000 \
-v ./config:/config \
ghcr.io/bakerboy448/redditmodlog:1
ghcr.io/baker-scripts/redditmodlog:1

# 4. Using Docker Compose (recommended)
docker compose up -d
Expand All @@ -270,7 +270,7 @@ docker run -d \
-e REDDIT_PASSWORD=your_password \
-e SOURCE_SUBREDDIT=yoursubreddit \
-v ./config:/config \
ghcr.io/bakerboy448/redditmodlog:1
ghcr.io/baker-scripts/redditmodlog:1
```

### Docker Compose Example
Expand All @@ -280,7 +280,7 @@ version: '3.8'

services:
redditmodlog-opensignups:
image: ghcr.io/bakerboy448/redditmodlog:1
image: ghcr.io/baker-scripts/redditmodlog:1
container_name: redditmodlog-opensignups
restart: unless-stopped
environment:
Expand Down Expand Up @@ -321,13 +321,13 @@ services:
Pre-built images available at GitHub Container Registry:

**Recommended Tags:**
- `ghcr.io/bakerboy448/redditmodlog:1` - Major version (gets v1.x.x updates automatically)
- `ghcr.io/bakerboy448/redditmodlog:1.4` - Minor version (gets v1.4.x patches only)
- `ghcr.io/bakerboy448/redditmodlog:1.4.3` - Specific version (pinned, no updates)
- `ghcr.io/baker-scripts/redditmodlog:1` - Major version (gets v1.x.x updates automatically)
- `ghcr.io/baker-scripts/redditmodlog:1.4` - Minor version (gets v1.4.x patches only)
- `ghcr.io/baker-scripts/redditmodlog:1.4.3` - Specific version (pinned, no updates)

**Other Tags:**
- `ghcr.io/bakerboy448/redditmodlog:latest` - Always latest build (use with caution)
- `ghcr.io/bakerboy448/redditmodlog:sha-<commit>` - Specific commit SHA
- `ghcr.io/baker-scripts/redditmodlog:latest` - Always latest build (use with caution)
- `ghcr.io/baker-scripts/redditmodlog:sha-<commit>` - Specific commit SHA

**Architectures:** `linux/amd64`, `linux/arm64`

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
modlog-bot:
build: .
image: ghcr.io/bakerboy448/redditmodlog:latest
image: ghcr.io/baker-scripts/redditmodlog:latest
container_name: reddit-modlog-bot
restart: unless-stopped
environment:
Expand Down
Loading