Skip to content
Snippets Groups Projects
Lukas Bolle's avatar
3b00a0f4
History

Readme in German

OurSimpleShow

Installation

For a installation with docker, please see https://code.ovgu.de/oursimpleshow/docker.

Usage

For instructions about the usage of oursimpleshow, please see USAGE.md

Development

docker and docker-compose are required for the installation. Please make sure that you are in the docker-group or execute all docker-related commands with sudo.

You won't have to clone the imagedb for development, thus oursimpleshow won't automatically find and use these images. You can still generate a video with your own files. But it is useful for a small development environment.

git clone https://code.ovgu.de/oursimpleshow/core.git oursimpleshow-core
cd oursimpleshow-core
# ... modify the code
# build the docker image
docker build . -t ovgu.docker.bolli.tech/oursimpleshow/core:<tag>
# run oursimpleshow
docker-compose up -d
# publish the new image
docker push ovgu.docker.bolli.tech/oursimpleshow/core:<tag>

The docker image tags should use Semantic versioning. You can add multiple tags with -t and should add all necessary tags (e.g. if you want to release version 1.2.3 you should tag the image as 1.2.3, 1.2, 1 and latest).