Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/treehouses/kolibri
kolibri docker image for arm
https://github.com/treehouses/kolibri
docker kolibri learning-management-system open-learning-exchange
Last synced: about 1 month ago
JSON representation
kolibri docker image for arm
- Host: GitHub
- URL: https://github.com/treehouses/kolibri
- Owner: treehouses
- License: mit
- Created: 2018-03-26T16:20:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-20T01:44:11.000Z (over 3 years ago)
- Last Synced: 2024-08-03T15:12:14.578Z (4 months ago)
- Topics: docker, kolibri, learning-management-system, open-learning-exchange
- Language: Shell
- Homepage: https://hub.docker.com/r/treehouses/kolibri/
- Size: 46.9 KB
- Stars: 9
- Watchers: 9
- Forks: 7
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - treehouses/kolibri - kolibri docker image for arm (docker)
README
# Multiarchitecture Kolibri for docker
[![Build Status](https://travis-ci.org/treehouses/kolibri.svg?branch=master)](https://travis-ci.org/treehouses/kolibri)
[![](https://images.microbadger.com/badges/image/treehouses/kolibri.svg)](https://microbadger.com/images/treehouses/kolibri "Get your own image badge on microbadger.com")Kolibri docker image (Tested on amd64, armv, arm64)
## How to use ?1. Multiarchitecture Docker image is already present at docker hub at `treehouses/kolibri`. Replace `/data/save/location` with the path where you want to save the database and files. If this path is empty then default database and files will be initialized.
```
docker run -v /data/save/location:/root/.kolibri -p 8080:8080 treehouses/kolibri
```## How to compile image yourself ?
1. Clone this repository and `cd` to the folder.
2. Build a docker image:```
docker build -t kolibri:v1 .
```
3. Create a docker container. Replace `/data/save/location` with the path where you want to save the database and files. If this path is empty then default database and files will be initialized.```
docker run -v /data/save/location:/root/.kolibri -p 8080:8080 kolibri:v1
```