GithubHelp home page GithubHelp logo

docker-presentation-smlug's Introduction

Docker-Presentation-SMLUG

Source code for Introduction to Docker Presentation. South Mississippi Linux Users Group October 20, 2018


Run an nginx container

mkdir /tmp/my_docker_volume
echo "<htmlHello From >My Custom Nginx Container</html>" > /tmp/my_docker_volume/index.html
docker run -p80:80 -v /tmp/my_docker_volume:/usr/share/nginx/html:ro -d nginx

Running Custom Containers:

  1. Clone this repo: git clone https://github.com/tlewis11/Docker-Presentation-SMLUG.git.
  2. Build and run custom containers from the ./containers directory.

Build the custom Python container

  cd Docker-Presentation-SMLUG/containers/python_app
  docker build -t my-python-app .
  docker run -p 8000:8000 -t my-python-app 

Browse to localhost:8000

Build the custom Nodejs container

  cd Docker-Presentation-SMLUG/containers/nodejs_app
  docker build -t my-nodejs-app .
  docker run -p 8001:8001 -t my-nodejs-app 

Browse to localhost:8001

Build the custom Java container

  cd Docker-Presentation-SMLUG/containers/java_app
  ./gradlew clean build
  docker build -t my-java-app .
  docker run -p 8080:8080 my-java-app

Browse to localhost:8080

docker-presentation-smlug's People

Contributors

tlewis11 avatar

Stargazers

Hameed Abdul avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.