chore(deps): update ghcr.io/dockpeek/dockpeek docker tag to v1.6.2 #241

Merged
Trez.One merged 1 commits from renovate/ghcr-io-dockpeek-dockpeek-v1-6-2 into main 2025-09-19 07:30:16 -04:00
Member

This PR contains the following updates:

Package Update Change
ghcr.io/dockpeek/dockpeek minor v1.5.8 -> v1.6.2

Release Notes

dockpeek/dockpeek (ghcr.io/dockpeek/dockpeek)

v1.6.2

Compare Source

Docker Swarm & Architecture Overhaul

swarm

New Features

Improvements

  • Migrated to Gunicorn for production deployment
  • Refactored to modular architecture
  • UI redesign with modern styling
  • Added sponsor icon in footer

Bug Fixes

  • Fixed search parsing for :port combinations

Full Changelog: https://github.com/dockpeek/dockpeek/compare/v1.6.1...v1.6.2

v1.6.1

Compare Source

Container Tagging & Column Management

Dockpeek Screenshot

[!IMPORTANT]
This update may require clearing Dockpeek’s cache for columns to display correctly

New Features

Container Tagging System
  • Tag Column – Organize containers with custom tags using dockpeek.tags label
    • Add tags using dockpeek.tags=tag1,tag2,tag3 labels
    • Tags displayed as styled badges in a dedicated column
  • Tag Filtering – Search containers by tags using # prefix (e.g., #production)
Column Customization
  • Drag & Drop Reordering – Rearrange columns by dragging them in the column visibility menu
  • Mobile Support – Full touch support for column reordering on mobile devices
  • Flexible Layout – Hide/show and reorder columns to match your workflow
Enhanced Traefik Integration
  • Multiple Host Support – Improved router rules handling for multi-host Traefik setups
  • HTTPS Detection – Comprehensive entrypoint detection for secure connections
  • JSON Export – Traefik data included in configuration exports

Improvements

  • Enhanced search functionality with tag-specific filtering
  • Replaced tooltips JS-based tooltips

Usage Examples

Adding Tags to Containers
labels:
  - "dockpeek.tags=production,web,critical"
Environment Configuration
environment:
  - TAGS=true  # Enable tagging (default: true)
Searching by Tags
  • Use #production to filter containers with "production" tag
  • Combine with regular search terms for advanced filtering

Full Changelog: https://github.com/dockpeek/dockpeek/compare/v1.6.0...v1.6.1

v1.6.0

Compare Source

Traefik Integration & Interface Improvements

New Features

Traefik Labels Support
  • New Traefik Column: Automatically detects and displays clickable URLs from Traefik labels
  • How it works:
    • Ignores containers with label traefik.enable=false
    • Extracts hostnames from traefik.http.routers.*.rule=Host(`domain.com`) labels (works with complex rules like Host(`domain.com`) && PathPrefix(`/api`))
    • Uses HTTPS when traefik.http.routers.*.entrypoints=websecure or traefik.http.routers.*.tls=true
    • Defaults to HTTP for traefik.http.routers.*.entrypoints=web or when no TLS configuration found
  • Environment Control: New TRAEFIK_LABELS environment variable to disable feature (true/false, default: true)

Minor Updates

  • Hide All Columns: Option to hide any column in the interface
  • Running Containers Filter: New filter to display only running containers
  • Improved Sorting: Fixed sorting behavior - none values now consistently appear at the end

Documentation

Updated README.

Full Changelog: https://github.com/dockpeek/dockpeek/compare/v1.5.8...v1.6.0


Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/dockpeek/dockpeek](https://github.com/dockpeek/dockpeek) | minor | `v1.5.8` -> `v1.6.2` | --- ### Release Notes <details> <summary>dockpeek/dockpeek (ghcr.io/dockpeek/dockpeek)</summary> ### [`v1.6.2`](https://github.com/dockpeek/dockpeek/releases/tag/v1.6.2) [Compare Source](https://github.com/dockpeek/dockpeek/compare/v1.6.1...v1.6.2) #### Docker Swarm & Architecture Overhaul ![swarm](https://i.imgur.com/ceEFBT7.png) **New Features** - Docker Swarm support (thanks [@&#8203;SheepReaper](https://github.com/SheepReaper) [#&#8203;27](https://github.com/dockpeek/dockpeek/issues/27)) - DISABLE\_AUTH environment variable ([#&#8203;23](https://github.com/dockpeek/dockpeek/issues/23)) **Improvements** - Migrated to Gunicorn for production deployment - Refactored to modular architecture - UI redesign with modern styling - Added sponsor icon in footer **Bug Fixes** - Fixed search parsing for :port combinations **Full Changelog**: <https://github.com/dockpeek/dockpeek/compare/v1.6.1...v1.6.2> ### [`v1.6.1`](https://github.com/dockpeek/dockpeek/releases/tag/v1.6.1) [Compare Source](https://github.com/dockpeek/dockpeek/compare/v1.6.0...v1.6.1) ### Container Tagging & Column Management ![Dockpeek Screenshot](https://i.imgur.com/aCu0gEf.png) > \[!IMPORTANT] > This update may require clearing Dockpeek’s cache for columns to display correctly #### New Features ##### Container Tagging System - **Tag Column** – Organize containers with custom tags using `dockpeek.tags` label - Add tags using `dockpeek.tags=tag1,tag2,tag3` labels - Tags displayed as styled badges in a dedicated column - **Tag Filtering** – Search containers by tags using `#` prefix (e.g., `#production`) ##### Column Customization - **Drag & Drop Reordering** – Rearrange columns by dragging them in the column visibility menu - **Mobile Support** – Full touch support for column reordering on mobile devices - **Flexible Layout** – Hide/show and reorder columns to match your workflow ##### Enhanced Traefik Integration - **Multiple Host Support** – Improved router rules handling for multi-host Traefik setups - **HTTPS Detection** – Comprehensive entrypoint detection for secure connections - **JSON Export** – Traefik data included in configuration exports #### Improvements - Enhanced search functionality with tag-specific filtering - Replaced tooltips JS-based tooltips #### Usage Examples ##### Adding Tags to Containers ```yaml labels: - "dockpeek.tags=production,web,critical" ``` ##### Environment Configuration ```yaml environment: - TAGS=true # Enable tagging (default: true) ``` ##### Searching by Tags - Use `#production` to filter containers with "production" tag - Combine with regular search terms for advanced filtering **Full Changelog**: <https://github.com/dockpeek/dockpeek/compare/v1.6.0...v1.6.1> ### [`v1.6.0`](https://github.com/dockpeek/dockpeek/releases/tag/v1.6.0) [Compare Source](https://github.com/dockpeek/dockpeek/compare/v1.5.8...v1.6.0) #### Traefik Integration & Interface Improvements #### New Features ##### Traefik Labels Support - **New Traefik Column**: Automatically detects and displays clickable URLs from Traefik labels - **How it works**: - Ignores containers with label `traefik.enable=false` - Extracts hostnames from ``traefik.http.routers.*.rule=Host(`domain.com`)`` labels (works with complex rules like ``Host(`domain.com`) && PathPrefix(`/api`)``) - Uses HTTPS when `traefik.http.routers.*.entrypoints=websecure` or `traefik.http.routers.*.tls=true` - Defaults to HTTP for `traefik.http.routers.*.entrypoints=web` or when no TLS configuration found - **Environment Control**: New `TRAEFIK_LABELS` environment variable to disable feature (`true`/`false`, default: `true`) #### Minor Updates - **Hide All Columns**: Option to hide any column in the interface - **Running Containers Filter**: New filter to display only running containers - **Improved Sorting**: Fixed sorting behavior - `none` values now consistently appear at the end #### Documentation Updated README. **Full Changelog**: <https://github.com/dockpeek/dockpeek/compare/v1.5.8...v1.6.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45Ny43IiwidXBkYXRlZEluVmVyIjoiNDEuOTcuNyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
renovate-bot force-pushed renovate/ghcr-io-dockpeek-dockpeek-v1-6-2 from 013a441dfe to 6619aa632f 2025-09-18 13:40:35 -04:00 Compare
renovate-bot force-pushed renovate/ghcr-io-dockpeek-dockpeek-v1-6-2 from 6619aa632f to b8ee068350 2025-09-18 19:43:05 -04:00 Compare
renovate-bot force-pushed renovate/ghcr-io-dockpeek-dockpeek-v1-6-2 from b8ee068350 to dd57aead21 2025-09-18 19:46:54 -04:00 Compare
renovate-bot force-pushed renovate/ghcr-io-dockpeek-dockpeek-v1-6-2 from dd57aead21 to ea90c5f38a 2025-09-18 19:54:29 -04:00 Compare
renovate-bot added 1 commit 2025-09-19 07:29:22 -04:00
chore(deps): update ghcr.io/dockpeek/dockpeek docker tag to v1.6.2
Renovate PR Deployment / deploy (pull_request) Failing after 18s
5f4013d89f
Trez.One merged commit 406040f1ab into main 2025-09-19 07:30:16 -04:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Trez/rinoa-docker#241