3 Commits

Author SHA1 Message Date
f5e9a950be some tweaks to the configuration 2025-04-20 10:35:40 -05:00
b32412314d Oh it sources it, I understand now 2025-04-19 10:19:14 -05:00
8b57dff8d4 install docker 2025-04-19 10:19:14 -05:00
10 changed files with 37 additions and 3 deletions

3
.gitignore vendored
View File

@@ -1,8 +1,5 @@
deploy/*
work/*
config
postrun.sh
SKIP
SKIP_IMAGES
.pc
*-pc

15
config Normal file
View File

@@ -0,0 +1,15 @@
IMG_NAME="showpieceos-bookworm-arm64"
PI_GEN_RELEASE="Showpiece OS Bookworm"
RELEASE="bookworm"
DEPLOY_COMPRESSION="none"
COMPRESSION_LEVEL=0
LOCALE_DEFAULT="en_US.UTF-8"
TARGET_HOSTNAME="showpiece"
KEYBOARD_KEYMAP="us"
KEYBOARD_LAYOUT="English (US)"
TIMEZONE_DEFAULT="America/Chicago"
FIRST_USER_NAME="pi"
FIRST_USER_PASS="letmein"
DISABLE_FIRST_BOOT_USER_RENAME=1
WPA_COUNTRY=US
ENABLE_SSH=0

View File

@@ -10,6 +10,8 @@ firefox rpi-firefox-mods
gldriver-test
fonts-droid-fallback
fonts-liberation2
fonts-noto
fonts-noto-color-emoji
obconf
raindrop
libcamera-tools

View File

@@ -1,6 +1,8 @@
xserver-xorg xinit
x11-xserver-utils
mousepad
eom
vim
lxde lxtask menu-xdg
zenity xdg-utils
gvfs-backends gvfs-fuse

View File

@@ -0,0 +1,3 @@
apt-transport-https
gnupg2
software-properties-common

View File

@@ -0,0 +1,7 @@
#!/bin/bash
#change to "debian" if necessary:
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
echo "deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
$(lsb_release -cs) stable" | \
tee /etc/apt/sources.list.d/docker.list
apt update

View File

@@ -0,0 +1,3 @@
docker-ce
docker-compose-plugin
cgroupfs-mount

View File

@@ -0,0 +1,5 @@
#!/bin/bash
systemctl enable docker
systemctl start docker
gpasswd -a pi docker
newgrp docker

0
stage4/SKIP Normal file
View File

0
stage5/SKIP Normal file
View File