mirror of
https://github.com/dockersrc/archlinux
synced 2024-11-21 05:23:03 -05:00
Repo for docker-archlinux
https://casjay.work/dockersrc/archlinux
a0b378bb07
rootfs/usr/local/etc/docker/functions/entrypoint.sh |
||
---|---|---|
.gitea/workflows | ||
rootfs | ||
.dockerignore | ||
.env.scripts | ||
.gitattributes | ||
.gitignore | ||
Dockerfile | ||
LICENSE.md | ||
README.md |
👋 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 archlinux
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/archlinux/rootfs"
git clone "https://github.com/dockermgr/archlinux" "$HOME/.local/share/CasjaysDev/dockermgr/archlinux"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/archlinux/rootfs/." "$HOME/.local/share/srv/docker/archlinux/rootfs/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-archlinux \
--hostname archlinux \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-archlinux/rootfs/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-archlinux/rootfs/config:/config:z" \
-p 80:80 \
casjaysdevdocker/archlinux:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/archlinux
container_name: casjaysdevdocker-archlinux
environment:
- TZ=America/New_York
- HOSTNAME=archlinux
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-archlinux/rootfs/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-archlinux/rootfs/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/archlinux
OR
git clone "https://github.com/casjaysdevdocker/archlinux" "$HOME/Projects/github/casjaysdevdocker/archlinux"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/archlinux"
buildx