jason 0ae51f21a2
Build and Push / build (push) Waiting to run
🐛 Fix OCI labels and git repo env URL 🐛
image.url must be the browsable hub.docker.com/r page — docker.io
is only a registry pull host. source/doc and ENV_GIT_REPO_URL now
point at the real dockersrc GitHub repo.

- Dockerfile: image.url → https://hub.docker.com/r/casjaysdev/archlinux; source/doc → https://github.com/dockersrc/archlinux
- .env.scripts: ENV_GIT_REPO_URL → https://github.com/dockersrc/archlinux
2026-08-14 14:43:21 -04:00
2026-06-04 16:26:28 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:36 -05:00
2026-08-14 14:43:21 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:36 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:36 -05:00
2026-08-14 14:43:21 -04:00
2026-01-16 00:42:10 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:36 -05:00

👋 Welcome to archlinux 🚀

archlinux README

Install my system scripts

 sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
 sudo systemmgr --config && sudo systemmgr install scripts  

Automatic install/update

dockermgr update os archlinux

Install and run container

mkdir -p "/srv/root/docker/casjaysdev/archlinux/latest"
git clone "https://github.com/dockermgr/archlinux" "$HOME/.local/share/CasjaysDev/dockermgr/archlinux"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/archlinux/rootfs/." "/srv/root/docker/casjaysdev/archlinux/latest/"
docker run -d \
--restart always \
--privileged \
--name casjaysdev-archlinux-latest \
--hostname archlinux \
-e TZ=${TIMEZONE:-America/New_York} \
-v "/srv/root/docker/casjaysdev/archlinux/latest/data:/data:z" \
-v "/srv/root/docker/casjaysdev/archlinux/latest/config:/config:z" \
casjaysdev/archlinux:latest

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdev/archlinux
    container_name: casjaysdev-archlinux-latest
    environment:
      - TZ=America/New_York
      - HOSTNAME=archlinux
    volumes:
      - "/srv/root/docker/casjaysdev/archlinux/latest/data:/data:z"
      - "/srv/root/docker/casjaysdev/archlinux/latest/config:/config:z"
    restart: always

Get source files

dockermgr download src os archlinux

Build container

git clone "https://github.com/dockersrc/archlinux" "$HOME/Projects/github/dockersrc/archlinux"
cd "$HOME/Projects/github/dockersrc/archlinux" && buildx all 

Authors

🤖 casjay: Github 🤖
casjaysdev: Github Docker

S
Description
Repo for archlinux
Readme
223 KiB
Languages
Shell 92%
Dockerfile 8%