mirror of
https://github.com/dockersrc/archlinux
synced 2026-06-24 14:01:00 -04:00
1dc2b328f6d57e6dd08b7515c3c4de02bcb02da2
Hosts with a search domain cause containers to inherit it. When the zone has a wildcard AAAA record, public hostnames resolve to the host's own IPv6 address instead of the real server, breaking all outbound HTTPS and DNS from inside the container. The entrypoint already has a hook: if /usr/local/etc/resolv.conf exists it replaces /etc/resolv.conf at container startup. Ship a clean resolv.conf with Cloudflare + Google DNS and no search domain so container DNS is always correct regardless of host configuration. - rootfs/usr/local/etc/resolv.conf: new file — clean DNS, no search domain rootfs/usr/local/etc/resolv.conf
👋 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
Description
Languages
Shell
95.7%
Dockerfile
4.3%