https://github.com/3mdeb/armbian-docker
Docker for building Armbian
https://github.com/3mdeb/armbian-docker
Last synced: 5 months ago
JSON representation
Docker for building Armbian
- Host: GitHub
- URL: https://github.com/3mdeb/armbian-docker
- Owner: 3mdeb
- Created: 2016-05-25T10:26:21.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-25T22:57:37.000Z (almost 10 years ago)
- Last Synced: 2023-09-21T15:12:38.936Z (over 2 years ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository aim to provide container for building [Armbian](https://github.com/igorpecovnik/lib).
Assumptions:
* x86_64 Debian sid as host and container system
* there should be minimal number of packets installed by Armbian
* setup should simplify contribution (ie. using forked repo)
Usage
-----
```
git clone https://github.com/igorpecovnik/lib.git
cd armbian-docker
docker build -t 3mdeb/armbian .
cd ..
docker run -v ${PWD}/lib:/root/lib -t -i 3mdeb/armbian
```
Shorter way:
```
git clone https://github.com/3mdeb/armbian-docker.git
cd armbian-docker
REPO=git@github.com:3mdeb/lib.git ./init.sh
```
_NOTE_: you need access to `..`, also if `REPO` not provided
`https://github.com/igorpecovnik/lib.git` will be used
Development setup
-----------------
## Prepare repository
Clone your Armbian fork:
```
git clone git@github.com:3mdeb/lib.git
```
Add Igor's repository as upstream:
```
cd lib
git remote add upstream https://github.com/igorpecovnik/lib.git
git fetch upstream
```
Pull recent changes if needed.
## Run container
```
docker run -v ${PWD}/lib:/root/lib -t -i 3mdeb/armbian
```
Edit and commit your code on host side.