How to Transfer docker Images Without a Repository
Move Docker images between hosts without a registry using docker save and docker load — air-gapped deployments made simple.
All the articles with the tag "scripting".
Move Docker images between hosts without a registry using docker save and docker load — air-gapped deployments made simple.
Use docker cp to move files between running containers and your host machine — no volumes needed for one-off file transfers.
Run multiple commands in one docker exec call using sh -c — pipe commands, chain with && or ;, and avoid repeated container roundtrips.
xargs turns stdin into arguments — build complex pipelines, run parallel jobs, and handle filenames with spaces without breaking everything.
Advanced FFmpeg techniques — filter graphs, stream mapping, subtitle burning, speed adjustment, and batch processing scripts.
Shell globbing breaks inside docker exec because of how args are parsed — here's how to pass wildcards and asterisks correctly.
FFmpeg audio processing — normalize levels, convert formats, mix tracks, extract audio from video, and apply filters from the command line.
vim survival guide — modes, motions, search and replace, macros, splits, and the config tweaks that make it actually enjoyable to use.
tmux sessions, windows, and panes for developers — layouts, plugins, and the .tmux.conf that makes it feel like a proper IDE.
socat relays data between almost any two endpoints — TCP, UDP, Unix sockets, files, and serial ports. The netcat you didn't know you needed.
Create, modify, and delete users and groups on Linux — useradd, usermod, groupadd, sudo access, and /etc/passwd explained.
journalctl, grep, awk, and tail -f — read your Linux logs like a pro and find the error before it pages you at 3 AM.