35 lines
974 B
Markdown
35 lines
974 B
Markdown
About
|
|
=====
|
|
|
|
This is Hyperbola Docker is base image build setup that employs
|
|
the bootstrap tarball distributed by distro authors.
|
|
|
|
It's meant to provide an easy to use solution for building
|
|
Hyperbola Docker images.
|
|
|
|
Usage
|
|
======
|
|
|
|
- `git clone` this repository and move to directory where you have cloned it.
|
|
|
|
- Generate bootstrap image with [hyperbola-bootstrap](https://git.sr.ht/~heckyel/hyperbola-bootstrap) or download file from [archive.fridu.us](https://archive.fridu.us/hyperbola/iso/)
|
|
|
|
- Converter hyperbola-bootstrap to bootstrap image valid for docker
|
|
|
|
```console
|
|
$ bash tar_fix.sh --input=hyperbola-bootstrap.tar.gz --output=bootstrap.tar.gz
|
|
```
|
|
|
|
- Make sure you have my `Dockerfile`, `.dockerignore` and the `bootstrap.tar.gz` in one directory.
|
|
|
|
- Build the image with a command like:
|
|
|
|
```console
|
|
$ docker build --tag hyperbola:0.4 -f Dockerfile-Hyperbola-v04 .
|
|
```
|
|
|
|
License
|
|
=======
|
|
|
|
This work is licensed under the [GNU GPLv3+](LICENSE)
|