Giter Site home page Giter Site logo

fullcycle-docker's Introduction

Docker

Comandos

$ docker ps
# -a lista todos os containers
# -q lista somente os ids do containers

$ docker run hello-world
$ docker run -it ubuntu bash
# -i interativo
# -t terminal (tty)
# --rm auto-remove
# --name NOME define o nome do container
# -d (detach) executa e não aclopa o serviço no terminal
# -p 8080:80 redirecionamento de porta

$ docker run -d --name nginx -p 8080:80 nginx

$ docker rm $(docker ps -aq) -f
$ docker rm d79bf4a65267
# -f força a remoção do container

$ docker start nginx
$ docker stop nginx

$ docker exec -it nginx bash

$ docker run -d --name nginx -p 8080:80 -v ${pwd}/html:/usr/share/nginx/html
$ docker run -d --name nginx -p 8080:80 --mount type=bind,source="$(pwd)"/html,target=/usr/share/nginx/html
# -v bind do volumr, mas ele cria o diretório caso não exista
# --mount type=bind faz o bind do volume e não cria o diretório caso não existe. retorna um erro

$ docker volume ls
$ docker volume create meuvolume
$ docker run -d --name nginx -p 8080:80 --mount type=volume,source=meuvolume,target=/app

fullcycle-docker's People

Contributors

henriqueluizz 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.