Compare commits

..

2 Commits

Author SHA1 Message Date
2e8375d34f fix: detach keys conflicting with lazysql
Some checks failed
Build containers / changes (push) Has been cancelled
Build containers / base-image (push) Has been cancelled
Build containers / dependent-images (go) (push) Has been cancelled
Build containers / dependent-images (infra) (push) Has been cancelled
Build containers / dependent-images (php) (push) Has been cancelled
2026-02-21 10:41:36 +01:00
dc2f2991bc feat: add lazysql 2026-02-21 10:41:17 +01:00
2 changed files with 3 additions and 2 deletions

View File

@@ -5,9 +5,10 @@ RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \
dnf update -y && \ dnf update -y && \
dnf copr enable -y atim/lazygit && \ dnf copr enable -y atim/lazygit && \
dnf copr enable -y atim/lazydocker && \ dnf copr enable -y atim/lazydocker && \
dnf copr enable -y gierth/tools-golang && \
dnf -y --setopt=keepcache=1 install procps ping bash-completion glibc-langpack-en \ dnf -y --setopt=keepcache=1 install procps ping bash-completion glibc-langpack-en \
host-spawn dbus-launch \ host-spawn dbus-launch \
zoxide git npm neovim awk jq unzip fd-find lazygit lazydocker zoxide git npm neovim awk jq unzip fd-find lazygit lazydocker lazysql
# === setup user === # === setup user ===
RUN useradd -ms /bin/bash user && echo 'user ALL=NOPASSWD: ALL' > /etc/sudoers && mkdir -p /run/user/1000 && chown user:user /run/user/1000 RUN useradd -ms /bin/bash user && echo 'user ALL=NOPASSWD: ALL' > /etc/sudoers && mkdir -p /run/user/1000 && chown user:user /run/user/1000

View File

@@ -113,4 +113,4 @@ if [ "$(podman container inspect "$name" -f {{.State.Running}} 2>&1)" != 'true'
podman run -td $(default_args) $(param_args $@) "$registry/$image" podman run -td $(default_args) $(param_args $@) "$registry/$image"
fi fi
podman exec --detach-keys "ctrl-@" -it "$name" ${DEVC_COMMAND:-} podman exec --detach-keys "ctrl-@,ctrl-@" -it "$name" ${DEVC_COMMAND:-}