See [https://infracamp.org/project/kickstart] for detailed documentation.
Download kickstart.sh and install it by executing the curl command provided blow and place and
commit it within your project directory. To start-up a project you then just clone the repository and
execute ./kickstart.sh inside the projects root directory.
On your local workstation, kickstart.sh will:
DEV_MODE=1 and giving you an interactive shell as user user inside the container./opt inside the container so every user has the same absolute path.http://localhost
(configured by project in .kickstartconfig or global in $HOME/.kickstartconfig)user inside the container according to your actual uid so there will no permission problems$HOME/.kickcstartonfig file for additional mounts/ports/settings$HOME/.kickstart/secrets/<project>/<secret_name>to the container.env-fileDOCKER_HOST_IP.kick-stack.yml in composer format.kick.yml-file in the project folder (if using kickstart-flavor-containers)kickstart.sh and provide auto-download updates by calling ./kickstart.sh --upgradeOn testing stage kickstart.sh will:
On CI/CD pipeline kickstart.sh will:
gitlab-ci, github-actions, jenkins build environment and determine TAG and BRANCHdocker build and tagging with the correct tagsOn Deploy-stage:
A bash script to start and manage your develompment containers.
Run the container defined in .kick.yml:
./kickstart.sh
Run a command defined in .kick.yml-command: section:
./kickstart.sh :[command]
List available skeletons:
./kickstart.sh skel list
Install skeleton:
./kickstart.sh skel install <name>
Upgrade to newest kickstart version:
./kickstart.sh upgrade
Run a ci-build (build and push using gitlab-ci-runner):
./kickstart.sh ci-build
Copy’n’Paste installer script: (execute as user in your project-directory)
curl -o kickstart.sh "https://raw.githubusercontent.com/infracamp/kickstart/master/dist/kickstart.sh" && chmod +x kickstart.sh
The script will save kickstart.sh to the current directory and set the executable bit.
Run kickstart:
./kickstart.sh
Kickstart will create an empty .kick.yml file in the current directory. You might want to edit
at least the from:-Line.
version: 1
from: "infracamp/kickstart-flavor-ubuntu"
..more options..
Run ./kickstart.sh - the container should start.
To select a special flavor select
version: 1
from: "infracamp/kickstart-flavor-gaia"
See infracamp.org/container/ for full list and links to their documentation.
.kick.yml:
config_file:
template: "config.php.dist"
target: "config.php"
Will read config.dist.php file, which will be parsed copied into config.php.
config.php.dist
<?php
define("CONF_MYSQL_HOST", "%CONF_MYSQL_HOST%");
define("VERSION_STRING", "%VERSION_STRING%");
The configuration will be loaded from environment variables.
kickYou can define commands and run it inside the container.
version: 1
from: "infracamp/kickstart-flavor-gaia"
command:
build:
- "echo 'Build called'"
run:
- "echo 'Run called'"
do_something:
- "echo 'doing something'"
kick do_somethingKickstart will search for a file .kick-stack.yml in the project main
directory. If this file exists, it will be deployed as docker stack.
Make sure, all services you want to access from within your container
are attached to the external network project_name
Assume our project_name is my_proj_1 and we want to provide a mysql service
version: "3"
services:
mysqld:
image: mysql
networks:
- my_proj_1
networks:
my_proj_1:
external: true
The mysql service will be availabe as my_proj_1_mysqld.
Kickstart will read the user-config from:
~/.kickstartconfig
Available Options:
KICKSTART_DOCKER_RUN_OPTS="" # Optional parameters passed to the docker run command
KICKSTART_PORTS="80:4200;25:25" # Change the Port-Mappings
KICKSTART_WIN_PATH= # If running on windows - map bash
Secrets can be added either via the command kickstart secrets add <secretname> or
via Environment variables (used for ci-builds). All variables names KICKSECRET_name will
be mounted to /run/secrets/name.
./kickstartconfig
By default, kickstart will configure debuggers to send data to 10.10.10.10. So
this ip should be added to your pc’s networks.
Start one or more containers. If you are not using kickstart, make sure
you specify a name with the parameter --name.
Create, if not already exisitng a project-wide .kickstartconfig file.
Add a Line:
KICKSTART_DOCKER_RUN_OPTS="--link otherContainerName"
You can build ready-to-deploy containers with kickstart. Just add a Dockerfile
to your Project-Folder
FROM infracamp/kickstart-flavor-gaia
ENV DEV_CONTAINER_NAME="some_name"
ENV HTTP_PORT=80
ADD / /opt
RUN ["bash", "-c", "chown -R user /opt"]
RUN ["/kickstart/container/start.sh", "build"]
ENTRYPOINT ["/kickstart/container/start.sh", "standalone"]
Interval: A kick interval will be triggered every second (synchronous).
To save cpu-time you could add this to your .kick.yml
command:
interval:
- "sleep 300"
Add a tag to the master branch and add the gitlab-ci config
latest:
stage: build
script:
- ./kickstart.sh ci-build
only:
- master
- /^v.*$/
This will create a latest tag on every push and a latest and vx.x.x tagged
docker image on tagged builds.
Feel free to build your own flavors.
Some rules:
latest (stable release) and testing (current master branch build)Flavor names derive from greek mystical names click