Git Product home page Git Product logo

docker-mysql-tomcat's Introduction

Barebone Dockerized Webapp with MySQL Database:

  • sudo docker run -d -P -e MYSQL_USER=java -e MYSQL_PASSWORD=java -e MYSQL_DATABASE=javatest --name mysql orchardup/mysql

  • sudo docker run -ti --rm --link mysql:mysql -v %cd%:/host --entrypoint /bin/bash orchardup/mysql -c "sleep 4; mysql -u java --password=java -h mysql javatest < /host/init.sql; exit 0"

  • sudo docker build -t javatest .

  • sudo docker run -p 49160:8080 -d --link mysql:mysql javatest

You should be able to access the app on http://<docker-host-ip>:49160/dbtest

Inspect Database:

  • sudo docker inspect <container-id> for IPAddresss of the container

  • mysql -h IPAddresss -u root -p

  • prompt for Password and enter java

  • Enter show databases;

  • Enter use javatest ;

  • Run select * from testdata;

Note : Ensure you have MySQL client installed. If not, use below command sudo apt-get install mysql-client-core-5.5

Docker Compose

  • Run sudo docker-compose up
  • Run sudo docker ps to find the port on which web module host is running
  • Run http://<docker-host-ip>:<port>/dbtest

docker-mysql-tomcat's People

Contributors

pratapredking avatar ehazlett 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.