Repo for docker-archlinux https://casjay.work/dockersrc/archlinux
Go to file
casjay 5cb99f5d34
Some checks failed
release-tag / release-image (push) Failing after 24s
🗃️ Committing everything that changed 🗃️
Dockerfile
2024-10-12 21:53:50 -04:00
.gitea/workflows 🗃️ Committing everything that changed 🗃️ 2024-09-06 18:42:00 -04:00
rootfs 🗃️ Committing everything that changed 🗃️ 2024-10-12 20:48:29 -04:00
.dockerignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:37:04 -04:00
.env.scripts 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:20:59 -04:00
.gitattributes 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:37:04 -04:00
.gitignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:37:04 -04:00
Dockerfile 🗃️ Committing everything that changed 🗃️ 2024-10-12 21:53:50 -04:00
LICENSE.md 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:37:04 -04:00
README.md 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:24 -04: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 "/var/lib/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/." "/var/lib/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 "/var/lib/srv/root/docker/casjaysdev/archlinux/latest/data:/data:z" \
-v "/var/lib/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:
      - "/var/lib/srv/root/docker/casjaysdev/archlinux/latest/data:/data:z"
      - "/var/lib/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