Compare commits

...

2 Commits

Author SHA1 Message Date
d74c7565bd
fix: hide podman pull errors 2024-12-22 15:02:19 +01:00
a69e237bd6
fix: change directory locations 2024-12-21 20:31:15 +01:00

@ -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/Documents" ] && arg "-v $HOME/Documents:/home/user/Documents"
[ -d "$HOME/.local/share/devcontainer" ] && arg "-v $HOME/.local/share/devcontainer:/home/user/.dev"
[ -d "$HOME/Code" ] && arg "-v $HOME/Code:/home/user/Code"
[ -d "$HOME/.config/devcontainer" ] && arg "-v $HOME/.config/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 updates..."
if [ "$(podman pull -q "$image")" != "$(podman container inspect "$name" -f {{.Image}} 2>&1)" ]; then
log "fetching devcontainer updates..."
if [ "$(podman pull -q "$image" 2>&1)" != "$(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"