Files
just-commons/container/mod.just
sHa d3fec4b85a 🚀 MAJOR: Full migration to Just modules with modern features
BREAKING CHANGES:
- Complete restructure to Just module architecture (requires Just 1.31.0+)
- Command syntax changed: 'just postgres-sql' → 'just postgres sql'
- Import syntax changed: import → mod declarations

NEW FEATURES:
 Module-based architecture with optional modules
 Built-in Just colors ({{RED}}, {{GREEN}}, etc.) replace custom variables
 Enhanced [confirm] attributes for all destructive operations
 Organized [group('name')] attributes for better UX
 Modern justfile with comprehensive help system
 Updated documentation with migration guide

MODULES:
📦 postgres/    - PostgreSQL operations (sql, check, create-database, etc.)
📦 mysql/       - MySQL operations (sql, check, create-user, etc.)
📦 volumes/     - Volume management (clean-all, remove, list)
📦 container/   - Container operations (start, stop, logs, shell, exec)
📦 registry/    - Registry auth (login, logout, check)
📦 images/      - Image operations (build, push, pull, tag, clean)

USAGE:
just postgres sql "SELECT version();"
just volumes clean-all
just images build myapp

This is Just Commons v2.0 - a complete modernization using all of Just's latest features.
2025-09-27 02:27:53 +03:00

165 lines
4.5 KiB
Plaintext

# Universal container management operations
# Start service (or all services if no service specified)
[group('container')]
start service="" compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
if [ -n "$service" ]; then
echo -e "{{BLUE}}Starting service: $service{{NORMAL}}"
$compose_cmd $file_arg up -d "$service"
echo -e "{{GREEN}}✓ Service $service started{{NORMAL}}"
else
echo -e "{{BLUE}}Starting all services...{{NORMAL}}"
$compose_cmd $file_arg up -d
echo -e "{{GREEN}}✓ All services started{{NORMAL}}"
fi
# Stop service (or all services if no service specified)
[group('container')]
stop service="" compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
if [ -n "$service" ]; then
echo -e "{{BLUE}}Stopping service: $service{{NORMAL}}"
$compose_cmd $file_arg stop "$service"
echo -e "{{GREEN}}✓ Service $service stopped{{NORMAL}}"
else
echo -e "{{BLUE}}Stopping all services...{{NORMAL}}"
$compose_cmd $file_arg down
echo -e "{{GREEN}}✓ All services stopped{{NORMAL}}"
fi
# Restart service (or all services if no service specified)
[group('container')]
restart service="" compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
if [ -n "$service" ]; then
echo -e "{{BLUE}}Restarting service: $service{{NORMAL}}"
$compose_cmd $file_arg restart "$service"
echo -e "{{GREEN}}✓ Service $service restarted{{NORMAL}}"
else
just container stop "$service" "$compose_file"
just container start "$service" "$compose_file"
fi
# Show service status (specific service or all)
[group('container')]
status service="" compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
if [ -n "$service" ]; then
echo -e "{{BLUE}}Status for: $service{{NORMAL}}"
$compose_cmd $file_arg ps "$service"
else
echo -e "{{BLUE}}Service Status:{{NORMAL}}"
$compose_cmd $file_arg ps
fi
# View logs for specific service or all services
[group('container')]
logs service="" compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
if [ -n "$service" ]; then
echo -e "{{BLUE}}Showing logs for: $service{{NORMAL}}"
$compose_cmd $file_arg logs -f "$service"
else
echo -e "{{BLUE}}Showing logs for all services{{NORMAL}}"
$compose_cmd $file_arg logs -f
fi
# Open shell in specific container
[group('container')]
shell service compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
echo -e "{{BLUE}}Opening shell in: $service{{NORMAL}}"
$compose_cmd $file_arg exec "$service" /bin/bash
# Execute command in specific service container
[group('container')]
exec service cmd compose-file="":
#!/usr/bin/env bash
set -euo pipefail
compose_cmd=$(just _detect_compose)
service="{{service}}"
cmd="{{cmd}}"
compose_file="{{compose-file}}"
# Build compose file argument
file_arg=""
if [ -n "$compose_file" ]; then
file_arg="-f $compose_file"
fi
echo -e "{{BLUE}}Executing in $service: $cmd{{NORMAL}}"
$compose_cmd $file_arg exec "$service" bash -c "$cmd"