distroless container issues #75
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When trying to setup backupbot with garage any attempt to create a backup fails as the container integrates no shell and
backup-bot-twowants to wrap the pre-hook command. see #1 and the below error:I have verified that running the command manually and extracting the snapshot from the host's /var/lib/docker/volumes/ dir works, so I believe this to be a limitation with
backup-bot-two.note the garage dockerfile.
Very interesting question! I feel like I read some advice on running commands in these
scratch-based containers but I can't remember it; anyone have experience with it? The only (absolutely haunted) suggestion I can think of isdocker cp-ing some binaries into the container 👻I don't like these docker images. Yes they are very lightweight, but you can't really debug them...
Maybe we could implement some shell checking to know which shell is available and then either execute
bash -c 'set -o pipefail;$commandor executing the command directly.