├── .github └── workflows │ └── build.yaml ├── README.md ├── alma ├── Dockerfile └── helpers │ ├── build.sh │ ├── create_hosts_file.service │ ├── hosts │ ├── override.conf │ └── remove_dockerenv_file.service ├── alpine ├── Dockerfile └── helpers │ ├── build.sh │ └── inittab ├── centos-stream ├── Dockerfile └── helpers │ ├── build.sh │ ├── create_hosts_file.service │ ├── hosts │ ├── override.conf │ └── remove_dockerenv_file.service ├── debian ├── Dockerfile └── helpers │ ├── build.sh │ ├── create_hosts_file.service │ ├── hosts │ ├── locale │ ├── locale.conf │ ├── makedev │ ├── override.conf │ └── regenerate_ssh_host_keys.service ├── devuan ├── Dockerfile └── helpers │ ├── build.sh │ ├── hosts │ ├── locale │ ├── locale.conf │ ├── makedev │ └── rc.keys.ssh ├── fedora ├── Dockerfile └── helpers │ ├── build.sh │ ├── create_hosts_file.service │ ├── hosts │ ├── override.conf │ └── remove_dockerenv_file.service ├── rocky ├── Dockerfile └── helpers │ ├── build.sh │ ├── create_hosts_file.service │ ├── hosts │ ├── override.conf │ └── remove_dockerenv_file.service ├── ubuntu ├── Dockerfile └── helpers │ ├── build.sh │ ├── create_hosts_file.service │ ├── hosts │ ├── locale │ ├── locale.conf │ ├── locale.gen │ ├── makedev │ ├── override.conf │ ├── override22.conf │ ├── regenerate_ssh_host_keys.service │ └── remove_dockerenv_file.service └── void ├── Dockerfile └── helpers └── build.sh /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/README.md -------------------------------------------------------------------------------- /alma/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alma/Dockerfile -------------------------------------------------------------------------------- /alma/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alma/helpers/build.sh -------------------------------------------------------------------------------- /alma/helpers/create_hosts_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alma/helpers/create_hosts_file.service -------------------------------------------------------------------------------- /alma/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alma/helpers/hosts -------------------------------------------------------------------------------- /alma/helpers/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alma/helpers/override.conf -------------------------------------------------------------------------------- /alma/helpers/remove_dockerenv_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alma/helpers/remove_dockerenv_file.service -------------------------------------------------------------------------------- /alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alpine/Dockerfile -------------------------------------------------------------------------------- /alpine/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alpine/helpers/build.sh -------------------------------------------------------------------------------- /alpine/helpers/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/alpine/helpers/inittab -------------------------------------------------------------------------------- /centos-stream/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/centos-stream/Dockerfile -------------------------------------------------------------------------------- /centos-stream/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/centos-stream/helpers/build.sh -------------------------------------------------------------------------------- /centos-stream/helpers/create_hosts_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/centos-stream/helpers/create_hosts_file.service -------------------------------------------------------------------------------- /centos-stream/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/centos-stream/helpers/hosts -------------------------------------------------------------------------------- /centos-stream/helpers/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/centos-stream/helpers/override.conf -------------------------------------------------------------------------------- /centos-stream/helpers/remove_dockerenv_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/centos-stream/helpers/remove_dockerenv_file.service -------------------------------------------------------------------------------- /debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/Dockerfile -------------------------------------------------------------------------------- /debian/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/helpers/build.sh -------------------------------------------------------------------------------- /debian/helpers/create_hosts_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/helpers/create_hosts_file.service -------------------------------------------------------------------------------- /debian/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/helpers/hosts -------------------------------------------------------------------------------- /debian/helpers/locale: -------------------------------------------------------------------------------- 1 | LANG=C 2 | -------------------------------------------------------------------------------- /debian/helpers/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF8 2 | -------------------------------------------------------------------------------- /debian/helpers/makedev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/helpers/makedev -------------------------------------------------------------------------------- /debian/helpers/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/helpers/override.conf -------------------------------------------------------------------------------- /debian/helpers/regenerate_ssh_host_keys.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/debian/helpers/regenerate_ssh_host_keys.service -------------------------------------------------------------------------------- /devuan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/devuan/Dockerfile -------------------------------------------------------------------------------- /devuan/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/devuan/helpers/build.sh -------------------------------------------------------------------------------- /devuan/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/devuan/helpers/hosts -------------------------------------------------------------------------------- /devuan/helpers/locale: -------------------------------------------------------------------------------- 1 | LANG=C 2 | -------------------------------------------------------------------------------- /devuan/helpers/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF8 2 | -------------------------------------------------------------------------------- /devuan/helpers/makedev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/devuan/helpers/makedev -------------------------------------------------------------------------------- /devuan/helpers/rc.keys.ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/devuan/helpers/rc.keys.ssh -------------------------------------------------------------------------------- /fedora/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/fedora/Dockerfile -------------------------------------------------------------------------------- /fedora/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/fedora/helpers/build.sh -------------------------------------------------------------------------------- /fedora/helpers/create_hosts_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/fedora/helpers/create_hosts_file.service -------------------------------------------------------------------------------- /fedora/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/fedora/helpers/hosts -------------------------------------------------------------------------------- /fedora/helpers/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/fedora/helpers/override.conf -------------------------------------------------------------------------------- /fedora/helpers/remove_dockerenv_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/fedora/helpers/remove_dockerenv_file.service -------------------------------------------------------------------------------- /rocky/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/rocky/Dockerfile -------------------------------------------------------------------------------- /rocky/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/rocky/helpers/build.sh -------------------------------------------------------------------------------- /rocky/helpers/create_hosts_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/rocky/helpers/create_hosts_file.service -------------------------------------------------------------------------------- /rocky/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/rocky/helpers/hosts -------------------------------------------------------------------------------- /rocky/helpers/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/rocky/helpers/override.conf -------------------------------------------------------------------------------- /rocky/helpers/remove_dockerenv_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/rocky/helpers/remove_dockerenv_file.service -------------------------------------------------------------------------------- /ubuntu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/Dockerfile -------------------------------------------------------------------------------- /ubuntu/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/build.sh -------------------------------------------------------------------------------- /ubuntu/helpers/create_hosts_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/create_hosts_file.service -------------------------------------------------------------------------------- /ubuntu/helpers/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/hosts -------------------------------------------------------------------------------- /ubuntu/helpers/locale: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF8 2 | -------------------------------------------------------------------------------- /ubuntu/helpers/locale.conf: -------------------------------------------------------------------------------- 1 | LANG=en_US.UTF8 2 | -------------------------------------------------------------------------------- /ubuntu/helpers/locale.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/locale.gen -------------------------------------------------------------------------------- /ubuntu/helpers/makedev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/makedev -------------------------------------------------------------------------------- /ubuntu/helpers/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/override.conf -------------------------------------------------------------------------------- /ubuntu/helpers/override22.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/override22.conf -------------------------------------------------------------------------------- /ubuntu/helpers/regenerate_ssh_host_keys.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/regenerate_ssh_host_keys.service -------------------------------------------------------------------------------- /ubuntu/helpers/remove_dockerenv_file.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/ubuntu/helpers/remove_dockerenv_file.service -------------------------------------------------------------------------------- /void/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/void/Dockerfile -------------------------------------------------------------------------------- /void/helpers/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniosorg/lx-images/HEAD/void/helpers/build.sh --------------------------------------------------------------------------------