Skip to content

Commit

Permalink
Simplificando o passo de build do compose.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dunossauro committed Jun 3, 2024
1 parent a5ede71 commit aeba70d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions aulas/10.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,7 @@ services:
fastzero_app:
image: fastzero_app
build:
context: .
dockerfile: Dockerfile
build: .
ports:
- "8000:8000"
depends_on:
Expand Down Expand Up @@ -309,7 +307,7 @@ volumes:

7. `image: fastzero_app`: usa a imagem Docker da nossa aplicação.

8. `build:` : instruções para construir a imagem se não estiver disponível, nosso `Dockerfile`.
8. `build:`: instruções para construir a imagem se não estiver disponível, procura pelo `Dockerfile` em `.`.

9. `ports:`: mapeia portas do contêiner para o host.

Expand Down

0 comments on commit aeba70d

Please sign in to comment.