- Notifications
You must be signed in to change notification settings - Fork1
Examples of using Docker for various applications and services.
License
AnechaS/docker-examples
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
$cd nodejs-full-stack$ docker-compose up
backend running onhttp://localhost:1337
frontend running onhttp://localhost:8000
$cd nodejs-full-stack-combined$ docker build -t nodejs-full-stack-combined.$ docker run --name my-app -p 8000:3000 -p 1337:1337 nodejs-full-stack-combined
backend running onhttp://localhost:1337
frontend running onhttp://localhost:3000
$cd nodejs-full-stack-pm2$ docker build -t nodejs-full-stack-pm2.$ docker run --name my-app -p 8000:3000 -p 1337:1337 nodejs-full-stack-pm2
backend running onhttp://localhost:1337
frontend running onhttp://localhost:8000
$cd nodejs-full-stack-nginx$ docker-compose up
app running onhttp://localhost:8000
$cd nodejs-full-stack-ubuntu-nginx-pm2$ docker build -t nodejs-full-stack-ubuntu-nginx-pm2.$ docker run --name my-app -p 8000:80 nodejs-full-stack-ubuntu-nginx-pm2
app running onhttp://localhost:8000
$cd nodejs-full-stack-development$ docker-compose up
backend running onhttp://localhost:1337
frontend running onhttp://localhost:8000
$cd httpd-ssl$ docker build. -t my-httpd$ docker run --name my-httpd-server -p 80:80 -p 443:443 -d my-httpd
app running onhttps://localhost
$cd mysql-phpmyadmin$ docker-compose up
mysql running on mysql://localhost:3306
phpmyadmin running onhttp://localhost:8888
$cd php-mysql-phpmyadmin$ docker-compose up
app running onhttp://localhost:8080
mysql running on mysql://localhost:3306
phpmyadmin running onhttp://localhost:8888
$cd elasticsearch-kibana-standalone$ docker-compose up
elasticsearch running onhttp://localhost:9200
kibana running on mysql://localhost:5601 \
$cd ubuntu-jenkins$ docker build -t ubuntu-jenkins.$ docker run --name jenkins-demo -p 8080 ubuntu-jenkins
jenkins running onhttp://localhost:8080
About
Examples of using Docker for various applications and services.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.