One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
#!/bin/bash | |
# | |
# Generates client and server certificates used to enable HTTPS | |
# remote authentication to a Docker daemon. | |
# | |
# See http://docs.docker.com/articles/https/ | |
# | |
# To start the Docker Daemon: | |
# | |
# sudo docker -d \ |
Book: <..> | |
Title: Show by example | |
Author: Matthew Davis <[email protected]> |
Define your app’s environment with a Dockerfile so it can be reproduced anywhere.
####Build, Ship, Run. An open platform for distributed applications for developers and sysadmins.
Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment. Lastly, run docker-compose up and Compose will start and run your entire app. -https://docs.docker.com/compose
pipeline { | |
agent any | |
options { | |
disableConcurrentBuilds() | |
buildDiscarder(logRotator(numToKeepStr: '1')) | |
} |
#!/bin/sh | |
curl -L -O https://sourceforge.net/projects/mtop/files/mtop/v0.6.6/mtop-0.6.6.tar.gz | |
tar -xvzf mtop-0.6.6.tar.gz | |
rm -rf mtop-0.6.6.tar.gz | |
cd mtop-0.6.6 | |
yum install -y perl-devel cpan perl-DBD-MySQL | |
cpan force install Curses |