Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 318 Bytes

docker.rst

File metadata and controls

19 lines (12 loc) · 318 Bytes

Docker

$ docker ps
$ docker images

Dockerfile:

FROM docker/whalesay:latest
RUN apt-get -y update && apt-get install -y fortunes
CMD /usr/games/fortune -a | cowsay

Hacer una imagen apartir del Dockerfile

$ docker build -t docker-whale .