Compare commits

..

26 Commits

Author SHA1 Message Date
03df535d76 feat: add fluxcd to infra container
All checks were successful
Build container / fedora-build (push) Successful in 5m54s
2025-11-16 14:25:21 +01:00
d6ef16cd24 fix: disable seccomp for vms container
All checks were successful
Build container / fedora-build (push) Successful in 6m24s
2025-11-12 17:07:51 +01:00
a0ea04d2bd chore: remove kali container 2025-11-12 16:55:15 +01:00
d7468a444b feat: add vms path 2025-11-11 09:01:14 +01:00
f25b6966ef fix: enable gpu for vms container 2025-11-10 19:58:47 +01:00
9f1b65b781 refactor: add spacing to dockerfiles
All checks were successful
Build container / fedora-build (push) Successful in 5m48s
2025-11-10 17:59:48 +01:00
d81fa7d3a1 feat: add vms devcontainer 2025-11-10 17:57:21 +01:00
7e27784a9a chore: change code path
All checks were successful
Build container / kali-build (push) Successful in 4m13s
Build container / fedora-build (push) Successful in 6m25s
2025-11-04 16:26:11 +01:00
b5dd280e5a feat: add /mnt flag
Some checks failed
Build container / fedora-build (push) Failing after 4m42s
Build container / kali-build (push) Successful in 5m27s
2025-10-31 11:57:26 +01:00
bb43c758f9 feat: add -usb and -kvm flags 2025-10-31 11:43:28 +01:00
407ba8afae fix: use TAG in go container
All checks were successful
Build container / kali-build (push) Successful in 4m52s
Build container / fedora-build (push) Successful in 3m19s
2025-10-24 17:17:41 +02:00
aa3d5d5bb8 fix: only make dbus env variable available to host script
Some checks failed
Build container / fedora-build (push) Failing after 2m5s
2025-10-24 17:14:13 +02:00
28766d5e87 chore: change detach shortcut to ctrl-@ 2025-10-23 21:04:39 +02:00
51f7e95104 feat: readd detach keys 2025-10-22 13:02:15 +02:00
497d4e76d0 feat: add DEVC_COMMAND option 2025-10-22 12:47:34 +02:00
6ae5ff5a6c fix: tag support 2025-10-20 20:49:50 +02:00
611c16a087 ci: simplify pipeline
All checks were successful
Build container / kali-build (push) Successful in 4m29s
2025-10-20 20:35:27 +02:00
26266017c2 ci: use zstd compression for containers
All checks were successful
Build container / kali-build (push) Successful in 5m12s
Build container / fedora-build (push) Successful in 3m32s
2025-10-20 18:04:26 +02:00
c6fa393c03 refactor: reintroduce ssh agent 2025-10-20 17:17:17 +02:00
27d2f05a3d refactor: seperate kali and fedora container workflows\
All checks were successful
Build container / fedora-build (push) Successful in 5m23s
Build container / kali-build (push) Successful in 6m11s
2025-10-19 21:14:23 +02:00
72c7271163 feat: add -x11 flag 2025-10-19 21:02:12 +02:00
927e4ad227 fix(kali): use -p for creating home dirs
All checks were successful
Build container / fedora-build (push) Successful in 8m5s
2025-10-19 20:43:47 +02:00
fa489baac7 refactor: rename base to fedora 2025-10-19 20:43:25 +02:00
eea31f47e7 refactor: change installed packages
Some checks failed
Build container / base-build (push) Failing after 4m33s
2025-10-19 20:37:42 +02:00
6fa3dba208 fix: kali container build
Some checks failed
Build container / base-build (push) Failing after 3m5s
2025-10-19 20:32:40 +02:00
478464c6ad revert: ci: parallize build 2025-10-19 20:32:31 +02:00
16 changed files with 140 additions and 149 deletions

View File

@@ -1,103 +0,0 @@
name: Build container
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "0 16 * * FRI"
jobs:
base-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:${{ github.ref_name }}
git.plabble.org/job79/base:latest
go-build:
runs-on: job-latest
needs: base-build
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 go container
uses: docker/build-push-action@v5
with:
context: ./containers/go
file: ./containers/go/Containerfile
push: true
tags: |
git.plabble.org/job79/go:${{ github.ref_name }}
git.plabble.org/job79/go:latest
infra-build:
runs-on: job-latest
needs: base-build
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 infra container
uses: docker/build-push-action@v5
with:
context: ./containers/infra
file: ./containers/infra/Containerfile
push: true
tags: |
git.plabble.org/job79/infra:${{ github.ref_name }}
git.plabble.org/job79/infra:latest
kali-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 kali container
uses: docker/build-push-action@v5
with:
context: ./containers/kali
file: ./containers/kali/Containerfile
push: true
tags: |
git.plabble.org/job79/kali:${{ github.ref_name }}
git.plabble.org/job79/kali:latest

View File

@@ -0,0 +1,69 @@
name: Build container
on:
push:
branches: ["main"]
paths:
- "containers/fedora/**"
- "containers/go/**"
- "containers/infra/**"
- ".gitea/workflows/fedora.yaml"
pull_request:
branches: ["main"]
paths:
- "containers/fedora/**"
- "containers/go/**"
- "containers/infra/**"
- ".gitea/workflows/fedora.yaml"
schedule:
- cron: "0 16 * * FRI"
jobs:
fedora-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 fedora container
uses: docker/build-push-action@v5
with:
context: ./containers/fedora
file: ./containers/fedora/Containerfile
push: true
tags: git.plabble.org/job79/fedora:${{ github.ref_name }}
build-args: TAG=${{ github.ref_name }}
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
- 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:${{ github.ref_name }}
build-args: TAG=${{ github.ref_name }}
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
- name: Build and push infra container
uses: docker/build-push-action@v5
with:
context: ./containers/infra
file: ./containers/infra/Containerfile
push: true
tags: git.plabble.org/job79/infra:${{ github.ref_name }}
build-args: TAG=${{ github.ref_name }}
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true
- name: Build and push vms container
uses: docker/build-push-action@v5
with:
context: ./containers/vms
file: ./containers/vms/Containerfile
push: true
tags: git.plabble.org/job79/vms:${{ github.ref_name }}
build-args: TAG=${{ github.ref_name }}
outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true

View File

@@ -3,9 +3,9 @@ FROM quay.io/fedora/fedora:43
# === install system packages === # === install system packages ===
RUN dnf update -y && \ RUN dnf update -y && \
dnf copr enable -y atim/lazygit && \ dnf copr enable -y atim/lazygit && \
dnf -y install procps ping bash-completion glibc-langpack-en openssl \ dnf -y 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 chafa lazygit zoxide git npm neovim awk jq unzip fd-find lazygit
# === setup user === # === setup user ===
RUN useradd -ms /bin/bash user && \ RUN useradd -ms /bin/bash user && \

View File

@@ -4,6 +4,7 @@
export EDITOR=nvim \ export EDITOR=nvim \
WAYLAND_DISPLAY=wayland-0 \ WAYLAND_DISPLAY=wayland-0 \
XDG_RUNTIME_DIR=/run/user/1000 \ XDG_RUNTIME_DIR=/run/user/1000 \
SSH_AUTH_SOCK=/run/user/1000/ssh-auth-sock \
PS1="\[\e[30;46m\] \h | \w \[\e[0;36m\]\[\e[m\] " \ PS1="\[\e[30;46m\] \h | \w \[\e[0;36m\]\[\e[m\] " \
TZ="Europe/Amsterdam" TZ="Europe/Amsterdam"

View File

@@ -1,3 +1,4 @@
#!/bin/bash #!/bin/bash
export DBUS_SESSION_BUS_ADDRESS=unix:path=/tmp/bus
host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" \ host-spawn -cwd "${PWD/#$HOME/$HOST_HOME}" \
$([ "$(basename "$0")" != "host" ] && echo "$(basename "$0")") "$@" $([ "$(basename "$0")" != "host" ] && echo "$(basename "$0")") "$@"

View File

@@ -1,7 +1,7 @@
[user] [user]
email = job@plabble.org email = job@plabble.org
name = Job79 name = Job79
signingKey = ~/.ssh/id_ed25519.pub signingKey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPsqM6ABAaCTQZ+llFXD3CXrYYuIHDEnvz8IBbXddYEc job@plabble.org
[gpg] [gpg]
format = ssh format = ssh
[commit] [commit]

View File

@@ -1,4 +1,7 @@
FROM git.plabble.org/job79/base:latest ARG TAG
FROM git.plabble.org/job79/fedora:${TAG}
USER root USER root
RUN dnf -y install go RUN dnf -y install go
USER user USER user

View File

@@ -1,2 +1,2 @@
#!/bin/bash #!/bin/bash
arg "-v $HOME/Documents/devc/go:/home/user/projects" arg "-v $HOME/Documents/go:/home/user/Documents/go"

View File

@@ -1,5 +1,9 @@
FROM git.plabble.org/job79/base:latest ARG TAG
FROM git.plabble.org/job79/fedora:${TAG}
USER root USER root
RUN dnf -y install kubectl
RUN dnf -y install kubectl openssl
RUN curl -sL https://talos.dev/install | sh RUN curl -sL https://talos.dev/install | sh
RUN curl -s https://fluxcd.io/install.sh | bash
USER user USER user

View File

@@ -1,2 +1,2 @@
#!/bin/bash #!/bin/bash
arg "-v $HOME/Documents/devc/infra:/home/user/projects" arg "-v $HOME/Documents/infra:/home/user/Documents/infra"

View File

@@ -1,22 +0,0 @@
FROM docker.io/kalilinux/kali-rolling
# === install system packages ===
RUN apt update && \
apt install iputils-ping sudo \
zoxide git npm neovim gawk jq unzip fd-find lazygit
# === setup user ===
RUN useradd -ms /bin/bash user && \
usermod -aG sudo user && sed -i 's/^%sudo\s\+ALL=(ALL:ALL)\s\+ALL$/%sudo\tALL=(ALL:ALL)\tNOPASSWD: ALL/' /etc/sudoers && \
mkdir -p /run/user/1000 && chown user:user /run/user/1000
USER user
WORKDIR /home/user
RUN mkdir .config .local .cache
RUN git clone https://git.plabble.org/Job79/neovim-config.git .config/nvim
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

View File

@@ -0,0 +1,7 @@
ARG TAG
FROM git.plabble.org/job79/fedora:${TAG}
USER root
RUN dnf -y install qemu-system-x86
USER user

6
containers/vms/config.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
arg "-v $HOME/Documents/vms:/home/user/Documents/vms"
arg "--net host"
arg "--device /dev/kvm"
arg "--device /dev/dri"
arg "--security-opt seccomp=unconfined"

57
devc.sh
View File

@@ -29,14 +29,17 @@ default_args() {
# clipboard (wl-copy) and gui applications working. # clipboard (wl-copy) and gui applications working.
[ -e "/run/user/$UID/wayland-0" ] && arg "-v /run/user/$UID/wayland-0:/run/user/1000/wayland-0" [ -e "/run/user/$UID/wayland-0" ] && arg "-v /run/user/$UID/wayland-0:/run/user/1000/wayland-0"
# Mount the ssh socket to get ssh working.
[ -e "$SSH_AUTH_SOCK" ] && arg "-v $SSH_AUTH_SOCK:/run/user/1000/ssh-auth-sock"
# Make the user home dir a volume so it survives container # Make the user home dir a volume so it survives container
# restarts. Use copy to keep the homedir files from the image. # restarts. Use copy to keep the files from the image.
arg "-v $name:/home/user:copy" arg "-v $name:/home/user:copy"
# If there is custom configuration for the container, load # If there is custom configuration for the container, load
# it here. # it here.
config_file="$(dirname "$(realpath "$0")")/containers/$name/config.sh" config_file="$(dirname "$(realpath "$0")")/containers/$name/config.sh"
[ -f "${config_file}" ] && source "${config_file}" [ -f "$config_file" ] && source "${config_file}"
} }
# param_args returns the podman run arguments based on the # param_args returns the podman run arguments based on the
@@ -46,10 +49,24 @@ param_args() {
case "$1" in case "$1" in
-gpu) # Enable gpu acceleration. -gpu) # Enable gpu acceleration.
arg "--device /dev/dri" ;; arg "--device /dev/dri" ;;
-kvm) # Enable KVM.
arg "--device /dev/kvm" ;;
-usb) # Enable USB access.
arg "--device /dev/bus/usb" ;;
-host-spawn) # Enable spawning host commands from inside the container using host-spawn. -host-spawn) # Enable spawning host commands from inside the container using host-spawn.
arg "-v /run/user/$UID/bus:/tmp/bus" arg "-v /run/user/$UID/bus:/tmp/bus"
arg "-e HOST_HOME=$HOME" # Use to translate paths. arg "-e HOST_HOME=$HOME" # Used to translate paths.
arg "-e DBUS_SESSION_BUS_ADDRESS='unix:path=/tmp/bus'" ;;
-x11) # Enable X11 support.
arg "-v /tmp/.X11-unix:/tmp/.X11-unix"
arg "-v $XAUTHORITY:/run/user/1000/.Xauthority:ro"
arg "-e DISPLAY=$DISPLAY"
arg "-e XAUTHORITY=/run/user/1000/.Xauthority"
;;
-mnt) # Mount directory.
shift
arg "-w /mnt/"
arg "-v $1:/mnt/$([ ! -d "$1" ] && echo 'file')"
;; ;;
*) # Use unknown arguments a podman arguments. *) # Use unknown arguments a podman arguments.
arg "$1" ;; arg "$1" ;;
@@ -59,18 +76,11 @@ param_args() {
} }
### MAIN ### ### MAIN ###
# Get container registry from DEVC_REGISTRY env variable.
if [ -n "${DEVC_REGISTRY:-}" ]; then
registry="$DEVC_REGISTRY"
else
log "registry unknown; set the DEVC_REGISTRY environment variable" 'x' 31
exit 1
fi
# Get the devcontainer name from the first argument. If not # Get the devcontainer name from the first argument. If not
# provided, use the last used name when possible. # provided, use the last used name when possible.
if [[ $# -gt 0 ]] && [[ ${1:-} != -* ]]; then if [[ $# -gt 0 ]] && [[ ${1:-} != -* ]]; then
image="$1" image="$1"
[[ "$image" != *:* ]] && image="$image:main"
echo "$image" >"$HOME/.local/share/devc-previous-container" echo "$image" >"$HOME/.local/share/devc-previous-container"
shift shift
elif [ -f "$HOME/.local/share/devc-previous-container" ]; then elif [ -f "$HOME/.local/share/devc-previous-container" ]; then
@@ -81,12 +91,27 @@ else
fi fi
name="${image%:*}" name="${image%:*}"
# Create a new container when the container is not running or # Get container registry from the DEVC_REGISTRY env
# when any arguments are provided. # variable.
if [ -n "${DEVC_REGISTRY:-}" ]; then
registry="$DEVC_REGISTRY"
else
log "registry unknown; set the DEVC_REGISTRY environment variable" 'x' 31
exit 1
fi
# Get container command from the DEVC_COMMAND env variable
# if set, else use bash -l.
if [ -z "${DEVC_COMMAND:-}" ]; then
DEVC_COMMAND="bash -l"
fi
# When container is not running or arguments are provided,
# recreate it.
if [ "$(podman container inspect "$name" -f {{.State.Running}} 2>&1)" != 'true' ] || [[ $# -gt 0 ]]; then if [ "$(podman container inspect "$name" -f {{.State.Running}} 2>&1)" != 'true' ] || [[ $# -gt 0 ]]; then
log "starting devcontainer..." log "starting devcontainer..."
podman container rm -f -t 0 "$name" 1>/dev/null podman container rm -f -t 0 "$name" 1>/dev/null
podman run -td $(default_args) $(param_args $@) "$registry/$name" podman run -td $(default_args) $(param_args $@) "$registry/$image"
fi fi
podman exec -it "$name" bash -l podman exec --detach-keys "ctrl-@" -it "$name" ${DEVC_COMMAND:-}