| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
ℹ️ NOTE: Please open issues in the Kubero main repository.
Kubero does NOT build real docker images but uses allready public available an well maintained Images. A buildpack consists of a three parts:
There are several examples in the packs folder to simulate on docker-compose how the app will be deployed.
This is also the home of the Kubero fetch image. The main purpose of this image ist to pull the code from the repository and prepare the init scripts based on the Procfile. The Procfile will be ignored if a init allready exists. This allows you to write more complex init scripts.
For now only the Procfile is respected (devfile and app.json may follow in the future).
Format of the Procfile with a node application:
build: npm install web: node index.js worker: node worker.js
export GIT_REPOSITORY=git@github.com:kubero-dev/template-nodeapp.git
export GIT_BRANCH=mainIn case you want to pull a private repository you need to place your private deploy key in the ./keys/deploykey file.
Build the base image
cd packs/base
docker-compose build
docker-compose up -dcd packs/node
docker-compose up -d| Back | FazBrowse Home | New Git URL |