mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Complete rename of the project from lazydocker to lazypodman: - Update Go module to github.com/christophe-duc/lazypodman - Update all import statements across 51 Go files - Update binary name, descriptions, and CLI help text - Update config directory paths to christophe-duc/lazypodman - Update all 9 i18n language files with new strings - Update scripts (install_update_linux.sh, update_docs.sh) - Update config files (docker-compose.yml, .goreleaser.yml, etc.) - Update documentation (README.md, CONTRIBUTING.md, docs/) This is the foundational step before replacing Docker SDK with libpod bindings for native Podman support. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
414 B
YAML
16 lines
414 B
YAML
version: '3'
|
|
services:
|
|
lazypodman:
|
|
build:
|
|
context: https://github.com/christophe-duc/lazypodman.git
|
|
args:
|
|
BASE_IMAGE_BUILDER: golang
|
|
GOARCH: amd64
|
|
GOARM:
|
|
image: christophe-duc/lazypodman
|
|
container_name: lazypodman
|
|
stdin_open: true
|
|
tty: true
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./config:/.config/christophe-duc/lazypodman
|