Install Docker and Docker-Compose if you have not done so
# Install Docker
$ sudo wget -qO- https://get.docker.com/ | sh
$ sudo usermod -aG docker $USER
# PVE 直通硬盤 | |
--- | |
安裝 lshw | |
$ apt-get install lshw -y | |
查詢硬盤信息 | |
$ lshw -class disk -class storage |
docker run -t --rm --name gitlab-runner-register -v ~/.gitlab-runner:/etc/gitlab-runner gitlab/gitlab-runner \
register \
--non-interactive \
--executor="docker" \
--docker-image alpine:latest \
--url "https://gitlab.com/" \
--registration-token "{{YOUR_TOKEN_HERE}}" \
--description "A docker runner" \
I hereby claim:
To claim this, I am signing this object:
--- | |
PVE delte local-lvm partition | |
Reference: https://post.smzdm.com/p/awkv4pq4/ | |
lvremove pve/data | |
lvextend -l +100%FREE -r pve/root | |
Datacenter >> remove `local-lvm` partition >> edit `local` >> select all options |
============================ | |
--- | |
References | |
- https://www.cio.com/article/238607/how-to-install-arch-linux-on-your-pc.html | |
- https://arch.icekylin.online/ | |
- https://zhuanlan.zhihu.com/p/112536524 | |
- https://zhuanlan.zhihu.com/p/568211941 | |
[NORMAL INSTALLATION] |
Buildah is a container image builder tool, that produces OCI-compliant images. It is distributed as a single binary and is written in Go. Buildah is available as a package in most of modern Linux distributions, just follow official installation instructions.
Buildah can only be used to manipulate images. It's job is to build container images and push them to registries. There is no daemon involved. Neither does Buildah require root privileges to build images. This makes Buildah especially handy as part of a CI/CD pipeline -- you can easily run Buildah inside a container without granting this container any root rights.