Compare commits
75 Commits
main
..
882ebfaa00
| Author | SHA1 | Date | |
|---|---|---|---|
|
882ebfaa00
|
|||
|
b3be78041c
|
|||
|
48f13d622b
|
|||
|
d5ed7bc7f7
|
|||
| 8caa62dc4e | |||
| 4bd0828cbc | |||
| 0aedb01b60 | |||
| c82407fbd2 | |||
| d74c7565bd | |||
| a69e237bd6 | |||
| 9cca35a969 | |||
| b93b0bd735 | |||
| b745a06eec | |||
| 9fbc411dab | |||
| ece5e86a16 | |||
| 065eeedce2 | |||
| 8f4c57d178 | |||
| 09af0db185 | |||
| 9d90ea60f2 | |||
| 790c7c722c | |||
| 35c4f7ed8f | |||
| 8c981a8e8d | |||
| f7da637a1c | |||
| f6bd18cf7d | |||
| 50fc142407 | |||
| 2d7807ea60 | |||
| 5fc464aa6d | |||
| 3560f348a7 | |||
| a0b65c856d | |||
| 393e49c781 | |||
| 9bed5b823f | |||
| 641d1c3050 | |||
| e180de3a7b | |||
| 7fdb0e0fc0 | |||
| 0c76caa267 | |||
| 420d4a287a | |||
| 5bc72a6fb3 | |||
| a1332e1f69 | |||
| d545a9cdf0 | |||
| fedeb5d58d | |||
| fc68b611fe | |||
| 702687276a | |||
| b11b9fd153 | |||
| 5868d34775 | |||
| 6fffe4e0a0 | |||
| ee6ffcd31a | |||
| 4c454ed3ef | |||
| 4a9e54b8b3 | |||
| 9498c36701 | |||
| 8d2948dcef | |||
| 1bad1c00eb | |||
| b6b9fc4f6b | |||
| a8ee5a8ee1 | |||
| ad2f27b8a8 | |||
| d97a76499f | |||
| 80995c560f | |||
| 89dbfcb996 | |||
| a67ea6c795 | |||
| 63ac1aae83 | |||
| df8b7b5bfe | |||
| 53cfeb1a62 | |||
| 562b26b96a | |||
| 7465b394f4 | |||
| 2e49a4f3a3 | |||
| 755605b2fb | |||
| 5c7db03b32 | |||
| 8c13f219b5 | |||
| 6556db0ce6 | |||
| 0e51472973 | |||
| 54865b536a | |||
| 7a63471603 | |||
| 9a20313beb | |||
| 5e3d7ca7fb | |||
| 17e3a6840f | |||
| c510c7f919 |
@@ -1,115 +0,0 @@
|
||||
name: Build containers
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: ["main"]
|
||||
paths: ["containers/**", ".gitea/workflows/build.yaml"]
|
||||
pull_request:
|
||||
branches: ["main"]
|
||||
paths: ["containers/**", ".gitea/workflows/build.yaml"]
|
||||
schedule:
|
||||
- cron: "0 16 * * FRI"
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: job-v2
|
||||
outputs:
|
||||
base: ${{ steps.filter.outputs.base == 'true' }}
|
||||
infra: ${{ steps.filter.outputs.infra == 'true' || steps.filter.outputs.base == 'true' }}
|
||||
go: ${{ steps.filter.outputs.go == 'true' || steps.filter.outputs.base == 'true' }}
|
||||
php: ${{ steps.filter.outputs.php == 'true' || steps.filter.outputs.base == 'true' }}
|
||||
any_change: ${{ steps.filter.outputs.workflow == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'}}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: https://github.com/dorny/paths-filter@v3
|
||||
id: filter
|
||||
with:
|
||||
filters: |
|
||||
workflow: ['.gitea/workflows/build.yaml']
|
||||
base: ['containers/base/**']
|
||||
infra: ['containers/infra/**']
|
||||
go: ['containers/go/**']
|
||||
php: ['containers/php/**']
|
||||
|
||||
base-image:
|
||||
needs: [changes]
|
||||
if: ${{ needs.changes.outputs.base == 'true' || needs.changes.outputs.any_change == 'true' }}
|
||||
runs-on: job-v2
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Log in
|
||||
uses: redhat-actions/podman-login@v1
|
||||
with:
|
||||
registry: git.plabble.org
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- name: Build
|
||||
id: build
|
||||
uses: job79/buildah-build@65b3793a1370c1ccd74a5c0d090d70eb9637a4ef
|
||||
with:
|
||||
image: job79/base
|
||||
tags: ${{ github.ref_name }}
|
||||
context: ./containers/base
|
||||
containerfiles: ./containers/base/Containerfile
|
||||
platforms: linux/amd64
|
||||
- name: Push
|
||||
uses: redhat-actions/push-to-registry@v2
|
||||
with:
|
||||
image: ${{ steps.build.outputs.image }}
|
||||
tags: ${{ steps.build.outputs.tags }}
|
||||
registry: git.plabble.org
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
extra-args: |
|
||||
--compression-format=zstd
|
||||
--compression-level=12
|
||||
|
||||
dependent-images:
|
||||
needs: [changes, base-image]
|
||||
if: always() && needs.changes.result == 'success' && (needs.base-image.result == 'success' || needs.base-image.result == 'skipped')
|
||||
runs-on: job-v2
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
container: [infra, go, php]
|
||||
steps:
|
||||
- name: Check if build needed
|
||||
id: check
|
||||
run: |
|
||||
if [[ "${{ matrix.container }}" == "infra" && "${{ needs.changes.outputs.infra }}" == "true" ]]; then echo "run=true" >> $GITHUB_OUTPUT; fi
|
||||
if [[ "${{ matrix.container }}" == "go" && "${{ needs.changes.outputs.go }}" == "true" ]]; then echo "run=true" >> $GITHUB_OUTPUT; fi
|
||||
if [[ "${{ matrix.container }}" == "php" && "${{ needs.changes.outputs.php }}" == "true" ]]; then echo "run=true" >> $GITHUB_OUTPUT; fi
|
||||
if [[ "${{ needs.changes.outputs.any_change }}" == "true" ]]; then echo "run=true" >> $GITHUB_OUTPUT; fi
|
||||
- name: Clone repo
|
||||
if: steps.check.outputs.run == 'true'
|
||||
uses: actions/checkout@v4
|
||||
- name: Log in
|
||||
if: steps.check.outputs.run == 'true'
|
||||
uses: redhat-actions/podman-login@v1
|
||||
with:
|
||||
registry: git.plabble.org
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- name: Build
|
||||
id: build
|
||||
if: steps.check.outputs.run == 'true'
|
||||
uses: job79/buildah-build@65b3793a1370c1ccd74a5c0d090d70eb9637a4ef
|
||||
with:
|
||||
image: job79/${{ matrix.container }}
|
||||
tags: ${{ github.ref_name }}
|
||||
context: ./containers/${{ matrix.container }}
|
||||
containerfiles: ./containers/${{ matrix.container }}/Containerfile
|
||||
build-args: TAG=${{ github.ref_name }}
|
||||
platforms: linux/amd64
|
||||
- name: Push
|
||||
if: steps.check.outputs.run == 'true'
|
||||
uses: redhat-actions/push-to-registry@v2
|
||||
with:
|
||||
image: ${{ steps.build.outputs.image }}
|
||||
tags: ${{ steps.build.outputs.tags }}
|
||||
registry: git.plabble.org
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
extra-args: |
|
||||
--compression-format=zstd
|
||||
--compression-level=12
|
||||
@@ -0,0 +1,43 @@
|
||||
name: Build container
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
branches: ["main"]
|
||||
schedule:
|
||||
- cron: "0 16 * * FRI"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: job-latest
|
||||
steps:
|
||||
- name: Clone repo
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Login to Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.plabble.org
|
||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||
password: ${{ secrets.REGISTRY_TOKEN }}
|
||||
- name: Build and push base container
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ./containers/base
|
||||
file: ./containers/base/Containerfile
|
||||
push: true
|
||||
tags: git.plabble.org/job79/base:latest
|
||||
- name: Build and push go container
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ./containers/go
|
||||
file: ./containers/go/Containerfile
|
||||
push: true
|
||||
tags: git.plabble.org/job79/go:latest
|
||||
- name: Build and push kube container
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
context: ./containers/kube
|
||||
file: ./containers/kube/Containerfile
|
||||
push: true
|
||||
tags: git.plabble.org/job79/kube:latest
|
||||
@@ -1,32 +1,20 @@
|
||||
FROM quay.io/fedora/fedora:44
|
||||
FROM quay.io/fedora/fedora:42
|
||||
|
||||
# === install system packages ===
|
||||
RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \
|
||||
dnf update -y && \
|
||||
dnf -y --setopt=keepcache=1 --setopt=install_weak_deps=False install \
|
||||
bash-completion git-core fzf curl awk jq fd-find rg unzip which \
|
||||
host-spawn wl-copy gcc
|
||||
|
||||
RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | jq -r .tag_name | sed 's/^v//') && \
|
||||
curl -sL "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_linux_x86_64.tar.gz" | tar xz -C /usr/local/bin lazygit && \
|
||||
curl -sL "https://github.com/jorgerojas26/lazysql/releases/latest/download/lazysql_Linux_x86_64.tar.gz" | tar xz -C /usr/local/bin lazysql && \
|
||||
curl -sL "https://github.com/neovim/neovim/releases/download/nightly/nvim-linux-x86_64.tar.gz" | tar xz -C /usr/local --strip-components=1
|
||||
|
||||
COPY config/bin /usr/local/bin
|
||||
RUN dnf update -y && \
|
||||
dnf copr enable -y atim/lazygit && \
|
||||
dnf -y install procps ping bash-completion glibc-langpack-en \
|
||||
host-spawn dbus-launch \
|
||||
zoxide git npm neovim awk jq unzip fd-find chafa lazygit
|
||||
|
||||
# === setup user ===
|
||||
RUN useradd -ms /bin/bash user && \
|
||||
echo 'user ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/user && \
|
||||
mkdir -p /run/user/1000 && \
|
||||
chown user:user /run/user/1000
|
||||
usermod -aG wheel user && sed -i '/NOPASSWD/s/^#//g' /etc/sudoers && \
|
||||
mkdir -p /run/user/1000 && chown user:user /run/user/1000
|
||||
|
||||
USER user
|
||||
WORKDIR /home/user
|
||||
|
||||
RUN mkdir -p .config .local .cache && \
|
||||
git clone https://git.plabble.org/Job79/neovim-config.git .config/nvim
|
||||
|
||||
RUN mkdir .config .local .cache
|
||||
COPY --chown=user:user config/bashrc .bashrc
|
||||
COPY --chown=user:user config/git .config/git/config
|
||||
|
||||
COPY config/bin /usr/local/bin
|
||||
VOLUME /home/user
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
source /etc/bashrc
|
||||
. /etc/bashrc
|
||||
|
||||
# === bash settings ===
|
||||
set -o vi
|
||||
bind -m vi-insert '"\C-l": clear-screen'
|
||||
# === container enter logic - cd to ENTER_DIR ===
|
||||
ENTER_DIR="${ENTER_DIR/#\~/$HOME}"
|
||||
[ -d "$ENTER_DIR" ] && cd "$ENTER_DIR"
|
||||
|
||||
# === environment ===
|
||||
export PS1="\[\e[30;46m\] \h | \w \[\e[0;36m\]\[\e[m\] " \
|
||||
EDITOR="nvim" \
|
||||
WAYLAND_DISPLAY="wayland-0" \
|
||||
XDG_RUNTIME_DIR="/run/user/1000" \
|
||||
SSH_AUTH_SOCK="/run/user/1000/ssh-auth-sock" \
|
||||
TZ="Europe/Amsterdam" \
|
||||
FZF_CTRL_T_COMMAND="fd --type f --hidden --exclude .git --exclude Library --exclude .cache" \
|
||||
FZF_ALT_C_COMMAND="fd --type d --hidden --exclude .git --exclude Library --exclude .cache"
|
||||
export EDITOR=nvim \
|
||||
WAYLAND_DISPLAY=wayland-0 \
|
||||
XDG_RUNTIME_DIR=/run/user/1000 \
|
||||
SSH_AUTH_SOCK=/run/user/1000/ssh-auth-sock \
|
||||
DBUS_SESSION_BUS_ADDRESS="unix:path=/tmp/bus" \
|
||||
PS1="\[\e[30;46m\] \h | \w \[\e[0;36m\]\[\e[m\] " \
|
||||
TZ="Europe/Amsterdam"
|
||||
|
||||
# === aliases and functions ===
|
||||
alias vi=nvim
|
||||
post() { curl -sF "content=<-" "https://paste.plabble.org/$2?lang=$1" && echo; }
|
||||
|
||||
eval "$(zoxide init --cmd cd bash)"
|
||||
eval "$(fzf --bash)"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
export DBUS_SESSION_BUS_ADDRESS="unix:path=/tmp/bus"
|
||||
|
||||
cmd="${0##*/}"
|
||||
[[ "$cmd" == "host" ]] && unset cmd
|
||||
exec host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" ${cmd:+"$cmd"} "$@"
|
||||
if [ "$(basename "$0")" != "host" ]; then
|
||||
host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" $(basename "$0") "$@"
|
||||
else
|
||||
host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" "$@"
|
||||
fi
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
[user]
|
||||
email = job@plabble.org
|
||||
name = Job79
|
||||
signingKey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPsqM6ABAaCTQZ+llFXD3CXrYYuIHDEnvz8IBbXddYEc job@plabble.org
|
||||
[gpg]
|
||||
format = ssh
|
||||
[commit]
|
||||
gpgSign = true
|
||||
[push]
|
||||
autoSetupRemote = true
|
||||
[init]
|
||||
defaultBranch = main
|
||||
@@ -1,10 +1,4 @@
|
||||
ARG TAG
|
||||
FROM job79/base:${TAG}
|
||||
FROM ghcr.io/job79/base:latest
|
||||
USER root
|
||||
|
||||
RUN GO_VERSION=$(curl -sL "https://go.dev/VERSION?m=text" | head -n 1 | tr -d '\r\n') && \
|
||||
curl -sL "https://go.dev/dl/${GO_VERSION}.linux-amd64.tar.gz" | tar xz -C /usr/local && \
|
||||
ln -sf /usr/local/go/bin/go /usr/local/bin/go && \
|
||||
ln -sf /usr/local/go/bin/gofmt /usr/local/bin/gofmt
|
||||
|
||||
RUN dnf -y install go
|
||||
USER user
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
#!/bin/bash
|
||||
run_opts+=("-v" "$HOME/Documents/go:/home/user/Documents/go")
|
||||
for dir in "Code" "Documents" "Downloads" ".config/devcontainer"; do
|
||||
arg "-v $HOME/$dir:/home/user/$dir"
|
||||
done
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
ARG TAG
|
||||
FROM job79/base:${TAG}
|
||||
USER root
|
||||
|
||||
RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \
|
||||
dnf -y --setopt=keepcache=1 --setopt=install_weak_deps=False install \
|
||||
just kubectl k9s openssl age "$(curl -s https://api.github.com/repos/getsops/sops/releases/latest | jq -r ".assets[] | select(.name | test(\"sops-.*.$(arch).rpm\$\")) | .browser_download_url")" && \
|
||||
curl -sL https://talos.dev/install | sh && \
|
||||
curl -s https://fluxcd.io/install.sh | bash
|
||||
|
||||
USER user
|
||||
@@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
run_opts+=("-v" "$HOME/Documents/infra:/home/user/Documents/infra")
|
||||
@@ -0,0 +1,4 @@
|
||||
FROM ghcr.io/job79/base:latest
|
||||
USER root
|
||||
RUN dnf -y install kubectl
|
||||
USER user
|
||||
@@ -0,0 +1,3 @@
|
||||
for dir in "Code" "Downloads" ".config/devcontainer"; do
|
||||
arg "-v $HOME/$dir:/home/user/$dir"
|
||||
done
|
||||
@@ -1,9 +0,0 @@
|
||||
ARG TAG
|
||||
FROM job79/base:${TAG}
|
||||
USER root
|
||||
|
||||
RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \
|
||||
dnf -y --setopt=keepcache=1 install php composer npm && \
|
||||
composer global require laravel/installer
|
||||
|
||||
USER user
|
||||
@@ -1,2 +0,0 @@
|
||||
#!/bin/bash
|
||||
run_opts+=("-v" "$HOME/Documents/php:/home/user/Documents/php")
|
||||
@@ -1,78 +0,0 @@
|
||||
#!/bin/bash
|
||||
# =============================================== #
|
||||
# devc.sh v2.1; job79, maurice #
|
||||
# Dev container entry script. #
|
||||
# =============================================== #
|
||||
set -euo pipefail
|
||||
log() { echo -e "\e[36m○\e[0m $1"; }
|
||||
die() { echo -e "\e[31mx\e[0m $1" && exit 1; }
|
||||
|
||||
# default_args configures standard container options.
|
||||
default_args() {
|
||||
run_opts+=(
|
||||
"--name" "$name"
|
||||
"--hostname" "$name"
|
||||
"--pull=newer" # Update image.
|
||||
"--userns=keep-id" # Map host user.
|
||||
"-v" "$name:/home/user:copy" # Persistent home volume.
|
||||
"-v" "dnf-cache:/var/cache/libdnf5" # Cache dnf metadata.
|
||||
)
|
||||
|
||||
# Unix sockets require SELinux label disable.
|
||||
[[ -d /sys/fs/selinux ]] && run_opts+=("--security-opt" "label=disable")
|
||||
|
||||
# Desktop integration (Wayland, SSH).
|
||||
[[ -e "/run/user/$UID/wayland-0" ]] && run_opts+=("-v" "/run/user/$UID/wayland-0:/run/user/1000/wayland-0")
|
||||
[[ -e "${SSH_AUTH_SOCK:-}" ]] && run_opts+=("-v" "$SSH_AUTH_SOCK:/run/user/1000/ssh-auth-sock")
|
||||
|
||||
# Load custom container config.
|
||||
local config_file="${BASH_SOURCE[0]%/*}/containers/$name/config.sh"
|
||||
[[ -f "$config_file" ]] && source "$config_file" || true
|
||||
}
|
||||
|
||||
# param_args parses CLI arguments into podman run options.
|
||||
param_args() {
|
||||
while (($# > 0)); do
|
||||
case "$1" in
|
||||
-gpu) run_opts+=("--device" "/dev/dri") ;;
|
||||
-host-spawn) run_opts+=("-v" "/run/user/$UID/bus:/tmp/bus" "-e" "HOST_HOME=$HOME") ;;
|
||||
-container-sock) run_opts+=("-v" "$XDG_RUNTIME_DIR/podman/podman.sock:/var/run/docker.sock") ;;
|
||||
-x11) run_opts+=("-v" "/tmp/.X11-unix:/tmp/.X11-unix" "-v" "$XAUTHORITY:/run/user/1000/.Xauthority:ro" "-e" "DISPLAY=$DISPLAY" "-e" "XAUTHORITY=/run/user/1000/.Xauthority") ;;
|
||||
-mnt) shift && run_opts+=("-w" "/mnt/" "-v" "$1:/mnt/$([[ -d "$1" ]] || echo "file")") ;;
|
||||
*) run_opts+=("$1") ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
}
|
||||
|
||||
main() {
|
||||
local state_file="$HOME/.local/share/devc-previous-container"
|
||||
local image="${1:-}"
|
||||
|
||||
# Resolve container name (CLI arg > Last used > Error).
|
||||
if [[ $image && $image != -* ]]; then
|
||||
shift
|
||||
[[ $image != *:* ]] && image+=":main"
|
||||
echo "$image" >"$state_file"
|
||||
elif [[ -f $state_file ]]; then
|
||||
image=$(<$state_file)
|
||||
else
|
||||
die "no container name specified"
|
||||
fi
|
||||
local name="${image%:*}"
|
||||
|
||||
# Start/Restart if not running or if arguments change configuration.
|
||||
if [[ -z "$(podman ps -q -f name="^$name$" -f status=running)" ]] || (($# > 0)); then
|
||||
log "starting $image..."
|
||||
|
||||
default_args
|
||||
param_args "$@"
|
||||
|
||||
[[ -n "${DEVC_REGISTRY:-}" ]] || die "registry unknown; set the DEVC_REGISTRY environment variable"
|
||||
podman run --replace --stop-timeout 0 -td "${run_opts[@]}" "$DEVC_REGISTRY/$image"
|
||||
fi
|
||||
|
||||
exec podman exec --detach-keys "ctrl-@,ctrl-@" -it "$name" ${DEVC_COMMAND:-bash -l}
|
||||
}
|
||||
|
||||
main "$@"
|
||||
@@ -0,0 +1,85 @@
|
||||
#!/bin/bash
|
||||
# =============================================== #
|
||||
# enter.sh v2.0; job79 #
|
||||
# Dev container enter script. Handles setting up #
|
||||
# different dev containers, resuming sessions and #
|
||||
# automatic container updates. #
|
||||
# =============================================== #
|
||||
set -eu
|
||||
log() { printf '\e[%sm%s\e[0m %s\n' "${3:-36}" "${2:-○}" "$1"; }
|
||||
arg() { echo -n " $@"; }
|
||||
|
||||
# run_args returns the podman run arguments required for
|
||||
# starting a new container.
|
||||
run_args() {
|
||||
arg "--name $name"
|
||||
|
||||
# Disable some security settings so host directories can
|
||||
# be mounted without problems.
|
||||
arg "--security-opt label=disable" # disable labeling so mounts don't need to be labeled.
|
||||
arg "--userns=keep-id" # required for ~/.ssh which is usually 700.
|
||||
|
||||
# Configure options to get host-spawn to work inside the
|
||||
# container.
|
||||
[ -e "/run/user/$UID/bus" ] && arg "-v /run/user/$UID/bus:/tmp/bus" # Use host dbus.
|
||||
arg "-e HOST_HOME=$HOME" # Used to translate container path to host.
|
||||
|
||||
# Use host networking.
|
||||
arg "--net=host"
|
||||
|
||||
# Mount the wayland socket. Required to get the system
|
||||
# clipbard (wl-copy) and gui applications working.
|
||||
[ -e "/run/user/$UID/wayland-0" ] && arg "-v /run/user/$UID/wayland-0:/run/user/1000/wayland-0"
|
||||
arg "--device /dev/dri" # mount gpu devices for gpu acceleration.
|
||||
|
||||
# Mount the ssh socket, directory and the git config
|
||||
# directory. This gets the host ssh and git configuration
|
||||
# working inside the container.
|
||||
[ -e "$SSH_AUTH_SOCK" ] && arg "-v $SSH_AUTH_SOCK:/run/user/1000/ssh-auth-sock"
|
||||
[ -d "$HOME/.ssh" ] && arg "-v $HOME/.ssh:/home/user/.ssh"
|
||||
[ -d "$HOME/.config/git" ] && arg "-v $HOME/.config/git:/home/user/.config/git"
|
||||
|
||||
# Add a volume for the home directory so it survives
|
||||
# container updates.
|
||||
arg "-v $name:/home/user:copy"
|
||||
|
||||
# Add custom user configuration.
|
||||
config_file="$script_dir/containers/$name/config.sh"
|
||||
[ -f "${config_file}" ] && source "${config_file}"
|
||||
}
|
||||
|
||||
### MAIN ###
|
||||
script_dir="$(dirname "$(realpath "$0")")"
|
||||
name=$(<"$script_dir/state/last-name")
|
||||
registry=$(<"$script_dir/state/registry")
|
||||
pull=false
|
||||
|
||||
while test $# -gt 0; do
|
||||
case "$1" in
|
||||
-p) pull=true ;;
|
||||
-*) log "unknown argument '$1'" 'x' 31 ;;
|
||||
*)
|
||||
name="$1"
|
||||
echo "$1" >"$script_dir/state/last-name"
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if [ "$(podman container inspect "$name" -f {{.State.Running}} 2>&1)" != 'true' ] || [ "$pull" = true ]; then
|
||||
log "fetching devcontainer updates..."
|
||||
if [ "$(podman container inspect "$name" -f {{.Image}} 2>&1)" != "$(podman pull -q "$registry/$name" 2>&1)" ] || [ "$pull" = true ]; then
|
||||
if [ $? -eq 0 ]; then
|
||||
log "container image downloaded" '✓' 32
|
||||
else
|
||||
log "failed to download container image" 'x' 31
|
||||
fi
|
||||
podman container rm -f -t 1 "$name" 1>/dev/null
|
||||
podman run -td $(run_args) "$registry/$name"
|
||||
else
|
||||
log "no updates available" '✓' 32
|
||||
fi
|
||||
fi
|
||||
|
||||
podman start "$name" 1>/dev/null
|
||||
podman exec -e ENTER_DIR="${PWD/#$HOME/\~}" --detach-keys "ctrl-@" -it "$name" bash -l
|
||||
@@ -0,0 +1 @@
|
||||
go
|
||||
@@ -0,0 +1 @@
|
||||
ghcr.io/job79
|
||||
Reference in New Issue
Block a user