Compare commits

..

No commits in common. "d74c7565bde0a0c9d3b55a422d809c0794c06b2b" and "9cca35a969a5f63b8eb4af861a7004c26df7f3f7" have entirely different histories.

@ -33,8 +33,8 @@ run_args() {
[ -d "$HOME/.config/git" ] && arg "-v $HOME/.config/git:/home/user/.config/git"
# Mount host directories with programming projects.
[ -d "$HOME/Code" ] && arg "-v $HOME/Code:/home/user/Code"
[ -d "$HOME/.config/devcontainer" ] && arg "-v $HOME/.config/devcontainer:/home/user/.dev"
[ -d "$HOME/Documents" ] && arg "-v $HOME/Documents:/home/user/Documents"
[ -d "$HOME/.local/share/devcontainer" ] && arg "-v $HOME/.local/share/devcontainer:/home/user/.dev"
# Add volumes for .local and .cache so these survive
# container restarts.
@ -58,8 +58,8 @@ while test $# -gt 0; do
done
if [ "$fetch" = true ] || [ "$(podman container inspect "$name" -f {{.State.Running}} 2>&1)" != 'true' ]; then
log "fetching devcontainer updates..."
if [ "$(podman pull -q "$image" 2>&1)" != "$(podman container inspect "$name" -f {{.Image}} 2>&1)" ]; then
log "fetching updates..."
if [ "$(podman pull -q "$image")" != "$(podman container inspect "$name" -f {{.Image}} 2>&1)" ]; then
log "container image downloaded" '✓' 32
podman container rm -f -t 1 "$name" 1>/dev/null
podman run -td $(run_args) "$image"