alpine-chroot-install icon indicating copy to clipboard operation
alpine-chroot-install copied to clipboard

Install Alpine Linux in chroot with a breeze. Build ARM on Travis CI or any other x86_64 CI.

Results 15 alpine-chroot-install issues
Sort by recently updated
recently updated
newest added

When no package needs to be installed, we could skip downloading the package list, saving some precious seconds: ``` if [ "$ALPINE_PACKAGES" != ' ' ]; then apk update apk...

enhancement

The script should probably warn users that `sudo` is required. With the current script you can use `doas` to actually create the chroot but as soon as you try and...

enhancement

closes https://github.com/alpinelinux/alpine-chroot-install/issues/30 and https://github.com/alpinelinux/alpine-chroot-install/issues/31

Hello, I am trying to run alpine-chroot-install on an arm64 machine. The script downloads and uses an x86_64 binary of apk. https://github.com/alpinelinux/alpine-chroot-install/blob/master/alpine-chroot-install#L81 Would it be possible to: 1. Release an...

`alpine-chroot-install` [mounts several filesystems](https://github.com/alpinelinux/alpine-chroot-install/blob/2eab5f44329990fda3b1572ae86ac7f58312ec66/alpine-chroot-install#L352-L356) into the created chroot directory - even before it's actually chrooted into. It appears that the `destroy` script takes care to unmount these filesystems before removing...

please check at least for TRAVIS=true and not Binding $PWD into chroot as default to not brake any systems witch is not TRAVIS https://github.com/alpinelinux/alpine-chroot-install/blob/master/alpine-chroot-install#L266-L271

I have made another version of this script. It is more simple and only really makes a base system and installs a arch of your choice (if you have the...

Hello! I just come back from absolutely bricking my OS - OpenWrt on a FriendlyElec NanoPi R6s - and decided to have a "side system" for anything that I can...

https://github.com/alpinelinux/alpine-chroot-install/blob/6d08f12a8a70dd9b9dc7d997c88aa7789cc03c42/alpine-chroot-install#L204 I ran into this issue with an Alpine chroot script I'm working on. This seems to be working for me, including with qemu-user: ``` chroot . /usr/bin/env -i su...

Currently alpine-chroot-install mounts device filesystems. However, if the system is rebooted, these mounts don't persist and there is no script to re-create them. I think this part of script should...