29 lines
820 B
Bash
Executable File
29 lines
820 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cat <<'EOF'
|
|
|
|
dnc installed successfully!
|
|
|
|
Quick start:
|
|
dnc setup --image <image> Create container for your project
|
|
dnc Launch bundled kitty in container mode
|
|
dnc -- /bin/bash Non-graphical shell (for SSH/no-display)
|
|
dnc -- <command> Run command in container
|
|
dnc help Show full help
|
|
|
|
Installed files:
|
|
/usr/bin/dnc Main command
|
|
/opt/dnc/kitty/ Bundled kitty terminal (v0.46.2)
|
|
/opt/dnc/lib/dnc/ Python CLI modules
|
|
/opt/dnc/libexec/ Helper scripts
|
|
|
|
Kitty configuration:
|
|
Kitty config is read from INSIDE your project container:
|
|
~/.config/kitty/kitty.conf
|
|
|
|
New tabs in kitty automatically exec into your project container via docker.
|
|
|
|
EOF
|
|
exit 0
|