pre-commit, launcher, _colors, api:gen, bootstrap, build, cleanup, container_id, container_ids, debug:send, downkill, env, logs, migrate, pkg:update, ps, python, restart, setup:dev, shell, start, stop, and ui_dev
14 lines
273 B
Bash
Executable File
14 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
. ./cmd/env
|
|
|
|
run_ps () {
|
|
$docker_path ps
|
|
# $docker_path ps --format "
|
|
# id: {{.ID}}
|
|
# container: {{.Names}}
|
|
# image: {{.Image}}
|
|
# state: {{- pad .State 1 0}}
|
|
# status: {{- pad .Status 1 0}}
|
|
# "
|
|
}
|
|
run_ps |