Shinyspace

Arch container

2026-04-07

for experimenting with LLM agents for coding, i am setting up a container. first draft of a script to create it:

#!/bin/bash

CONTAINER_NAME="vibecode"
HOME_DIR="$HOME/Sync/vibecode-home"
HOST_PORT=8080
CONTAINER_PORT=8080

mkdir -p "$HOME_DIR"

podman run -d \
  --name "$CONTAINER_NAME" \
  -v "$HOME_DIR:/root" \
  -p "$HOST_PORT:$CONTAINER_PORT" \
  docker.io/library/archlinux:latest \
  sleep infinity

enter it with:

podman exec -it vibecode bash