mirror of
https://github.com/dockersrc/almalinux
synced 2026-07-21 23:09:59 -04:00
063edf374a
Build and Push 10-dev / build (push) Has been cancelled
Build and Push 10 / build (push) Has been cancelled
Build and Push 8-dev / build (push) Has been cancelled
Build and Push 8 / build (push) Has been cancelled
Build and Push 9-dev / build (push) Has been cancelled
Build and Push 9 / build (push) Has been cancelled
Build and Push / build (push) Has been cancelled
Update volume mount examples from /var/lib/srv/$USER/docker to /srv/$USER/docker. - README.md almalinux/.dockerignore almalinux/.gitattributes almalinux/.gitea/workflows/build.yml almalinux/.gitignore almalinux/LICENSE.md almalinux/rootfs/root/docker/setup/00-init.sh almalinux/rootfs/root/docker/setup/01-system.sh almalinux/rootfs/root/docker/setup/02-packages.sh almalinux/rootfs/root/docker/setup/03-files.sh almalinux/rootfs/root/docker/setup/04-users.sh almalinux/rootfs/root/docker/setup/05-custom.sh almalinux/rootfs/root/docker/setup/06-post.sh almalinux/rootfs/root/docker/setup/07-cleanup.sh almalinux/rootfs/usr/local/bin/copy almalinux/rootfs/usr/local/bin/entrypoint.sh almalinux/rootfs/usr/local/bin/healthcheck almalinux/rootfs/usr/local/bin/pkmgr almalinux/rootfs/usr/local/bin/symlink almalinux/rootfs/usr/local/etc/docker/functions/entrypoint.sh : update path references to /srv/$USER/docker almalinux/.dockerignore almalinux/.gitattributes almalinux/.gitea/workflows/build.yml almalinux/.gitignore almalinux/LICENSE.md almalinux/rootfs/root/docker/setup/00-init.sh almalinux/rootfs/root/docker/setup/01-system.sh almalinux/rootfs/root/docker/setup/02-packages.sh almalinux/rootfs/root/docker/setup/03-files.sh almalinux/rootfs/root/docker/setup/04-users.sh almalinux/rootfs/root/docker/setup/05-custom.sh almalinux/rootfs/root/docker/setup/06-post.sh almalinux/rootfs/root/docker/setup/07-cleanup.sh almalinux/rootfs/usr/local/bin/copy almalinux/rootfs/usr/local/bin/entrypoint.sh almalinux/rootfs/usr/local/bin/healthcheck almalinux/rootfs/usr/local/bin/pkmgr almalinux/rootfs/usr/local/bin/symlink almalinux/rootfs/usr/local/etc/docker/functions/entrypoint.sh README.md
70 lines
1.8 KiB
Markdown
70 lines
1.8 KiB
Markdown
## 👋 Welcome to almalinux 🚀
|
|
|
|
almalinux README
|
|
|
|
|
|
## Install my system scripts
|
|
|
|
```shell
|
|
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
|
|
|
|
```shell
|
|
dockermgr update os almalinux
|
|
```
|
|
|
|
## Install and run container
|
|
|
|
```shell
|
|
mkdir -p "/srv/root/docker/casjaysdev/almalinux/latest"
|
|
git clone "https://github.com/dockermgr/almalinux" "$HOME/.local/share/CasjaysDev/dockermgr/almalinux"
|
|
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/almalinux/rootfs/." "/srv/root/docker/casjaysdev/almalinux/latest/"
|
|
docker run -d \
|
|
--restart always \
|
|
--privileged \
|
|
--name casjaysdev-almalinux-latest \
|
|
--hostname almalinux \
|
|
-e TZ=${TIMEZONE:-America/New_York} \
|
|
-v "/srv/root/docker/casjaysdev/almalinux/latest/data:/data:z" \
|
|
-v "/srv/root/docker/casjaysdev/almalinux/latest/config:/config:z" \
|
|
casjaysdev/almalinux:latest
|
|
```
|
|
|
|
## via docker-compose
|
|
|
|
```yaml
|
|
version: "2"
|
|
services:
|
|
ProjectName:
|
|
image: casjaysdev/almalinux
|
|
container_name: casjaysdev-almalinux-latest
|
|
environment:
|
|
- TZ=America/New_York
|
|
- HOSTNAME=almalinux
|
|
volumes:
|
|
- "/srv/root/docker/casjaysdev/almalinux/latest/data:/data:z"
|
|
- "/srv/root/docker/casjaysdev/almalinux/latest/config:/config:z"
|
|
restart: always
|
|
```
|
|
|
|
## Get source files
|
|
|
|
```shell
|
|
dockermgr download src os almalinux
|
|
```
|
|
|
|
## Build container
|
|
|
|
```shell
|
|
git clone "https://github.com/dockersrc/almalinux" "$HOME/Projects/github/dockersrc/almalinux"
|
|
cd "$HOME/Projects/github/dockersrc/almalinux" && buildx all
|
|
```
|
|
|
|
## Authors
|
|
|
|
🤖 casjay: [Github](https://github.com/casjay) 🤖
|
|
⛵ casjaysdev: [Github](https://github.com/dockersrc) [Docker](https://hub.docker.com/u/casjaysdev) ⛵
|