Solution Architect und Entwickler bei PDMLab
Microsoft MVP für ASP.NET
ASP.NET Web API / Microsoft Azure Advisor
In computing, microservices is a software architecture style, in which complex applications are composed of small, independent processes communicating with each other using language-agnostic APIs.
These services are small, highly decoupled and focus on doing a small task.
FROM ubuntu:14.04
MAINTAINER Docker Team <education@docker.com>
RUN apt-get update
RUN apt-get install -y nginx
RUN echo 'Hi, I am your father...erm in your container' \
>/usr/share/nginx/html/index.html
CMD [ "nginx", "-g", "daemon off;" ]
EXPOSE 80Image name <username>/<reponame>
z.B. microsoft/aspnet
docker push
docker pull
$ time sudo docker run ubuntu echo hello world$ sudo docker images
$ sudo docker history <CID>Nano Server
curl -sSL https://get.docker.com/ | sh
$ docker-machine create --driver virtualbox devweb:
build: .
links:
- db
ports:
- "8000:8000"
db:
image: postgres