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
- Host: GitHub
- URL: https://github.com/3mdeb/debos-docker
- Owner: 3mdeb
- Created: 2018-08-24T14:05:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-18T08:32:19.000Z (about 7 years ago)
- Last Synced: 2023-09-21T16:23:17.155Z (over 2 years ago)
- Topics: building, debian, debos, docker
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 9
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`