An open API service indexing awesome lists of open source software.

https://github.com/3mdeb/debos-docker

Docker container for debos: https://github.com/go-debos/debos
https://github.com/3mdeb/debos-docker

building debian debos docker

Last synced: 5 months ago
JSON representation

Docker container for debos: https://github.com/go-debos/debos

Awesome Lists containing this project

README

          

Prerequisites
-------------

* enabled virtualization:

- check if you have `kvm` device node:

```
ls /dev/kvm
```

If not, enable virtualization in BIOS and check again.

- add your user to kvm group:

```
usermod -a -G kvm
```

Visit [linux-kvm FAQ](https://www.linux-kvm.org/page/FAQ) for more informations.

* `binfmt_misc` module loaded on the host machine:

```
modprobe binfmt_misc
```

Pull Docker image
-----------------

```
docker pull 3mdeb/debos-docker
```

Running
-------

```
./run.sh DEBOS_PARAMETERS
```

> Visit [debos repo](https://github.com/go-debos/debos) for tool usage

For easy access from any directory:

```
ln -s $(readlink -f run.sh) ~/bin/debos-docker
debos-docker DEBOS_PARAMETERS
```

Build Docker image
------------------

> For development purposes only. Pull from dockerhub otherwise.

```
./build.sh
```

Release image to dockerhub
--------------------------

./release.sh VERSION_BUMP

`VERSION_BUMP` can be: `major`, `minor`, `patch`